diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2af7cef --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +nbproject/private/ +build/ +nbbuild/ +dist/ +nbdist/ +.nb-gradle/ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..df5b173 --- /dev/null +++ b/pom.xml @@ -0,0 +1,64 @@ + + + 4.0.0 + + br.com.tcc + tcc + 0.0.1-SNAPSHOT + jar + + tcc + Demo project for Spring Boot + + + org.springframework.boot + spring-boot-starter-parent + 1.5.9.RELEASE + + + + + UTF-8 + UTF-8 + 1.8 + + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-web + + + + com.h2database + h2 + runtime + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + diff --git a/src/main/java/br/com/tcc/tcc/TccApplication.java b/src/main/java/br/com/tcc/tcc/TccApplication.java new file mode 100644 index 0000000..54ab14d --- /dev/null +++ b/src/main/java/br/com/tcc/tcc/TccApplication.java @@ -0,0 +1,12 @@ +package br.com.tcc.tcc; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class TccApplication { + + public static void main(String[] args) { + SpringApplication.run(TccApplication.class, args); + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..e69de29 diff --git a/src/test/java/br/com/tcc/tcc/TccApplicationTests.java b/src/test/java/br/com/tcc/tcc/TccApplicationTests.java new file mode 100644 index 0000000..572f68b --- /dev/null +++ b/src/test/java/br/com/tcc/tcc/TccApplicationTests.java @@ -0,0 +1,16 @@ +package br.com.tcc.tcc; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@SpringBootTest +public class TccApplicationTests { + + @Test + public void contextLoads() { + } + +}