Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
35 changes: 12 additions & 23 deletions backend/TMSFullstackProject/pom.xml → backend/TMSProject/pom.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<relativePath /> <!-- lookup parent from repository -->
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>br.com.teamroxo.entra21</groupId>
<artifactId>TMSFullstackProject</artifactId>
<groupId>br.com.entra21.team-roxo</groupId>
<artifactId>TMSProject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>TMSFullstackProject</name>
<description>Projeto Final do Curso Entra21</description>
<name>TMSProject</name>
<description>Projeto Final do Entra21</description>
<properties>
<java.version>18</java.version>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
Expand All @@ -28,36 +29,24 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

</project>
</project>
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package br.com.teamroxo.entra21.TMSFullstackProject;
package br.com.entra21.teamroxo.TMSProject;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TmsFullstackProjectApplication {
public class TmsProjectApplication {

public static void main(String[] args) {
SpringApplication.run(TmsFullstackProjectApplication.class, args);
SpringApplication.run(TmsProjectApplication.class, args);
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package br.com.teamroxo.entra21.TMSFullstackProject;
package br.com.entra21.teamroxo.TMSProject;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class TmsFullstackProjectApplicationTests {
class TmsProjectApplicationTests {

@Test
void contextLoads() {
Expand Down
6 changes: 4 additions & 2 deletions frontend/main/src/app/home/home.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
margin-left: 100px;
margin-top: 80px;
}
.card-body ul li a{
.card-body a{
color: white;
transition: ease-in-out 0.35s ;
}
.card-body ul li a:hover{
.card-body a:hover{
transition: ease-in-out 0.35s ;
color: lightslategrey;
}
Loading