diff --git a/spring-boot-package-war/pom.xml b/spring-boot-package-war/pom.xml index c54d0da80..b1c021fcc 100644 --- a/spring-boot-package-war/pom.xml +++ b/spring-boot-package-war/pom.xml @@ -5,7 +5,7 @@ com.neo spring-boot-package-war - 0.0.1-SNAPSHOT + 0.0.2-SNAPSHOT war spring-boot-package-war @@ -20,7 +20,7 @@ UTF-8 - 1.7 + 1.8 @@ -44,10 +44,15 @@ spring-boot-starter-tomcat provided - - org.springframework.boot - spring-boot-devtools - true + + org.springframework.boot + spring-boot-devtools + true + + + javax.xml.bind + jaxb-api + 2.3.1 @@ -59,7 +64,7 @@ true - + diff --git a/spring-boot-package-war/src/main/java/com/neo/controller/HelloWorldController.java b/spring-boot-package-war/src/main/java/com/neo/controller/HelloWorldController.java index c231fae49..f138ebe6b 100644 --- a/spring-boot-package-war/src/main/java/com/neo/controller/HelloWorldController.java +++ b/spring-boot-package-war/src/main/java/com/neo/controller/HelloWorldController.java @@ -1,4 +1,4 @@ -package com.neo.controller; +package com.neo.spring.boot.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @@ -8,6 +8,6 @@ public class HelloWorldController { @RequestMapping("/hello") public String index() { - return "Hello World xx"; + return "Hello World"; } -} \ No newline at end of file +} diff --git a/spring-boot-package-war/src/test/java/com/neo/controller/HelloTests.java b/spring-boot-package-war/src/test/java/com/neo/controller/HelloTests.java index 02133d7ef..b54301610 100644 --- a/spring-boot-package-war/src/test/java/com/neo/controller/HelloTests.java +++ b/spring-boot-package-war/src/test/java/com/neo/controller/HelloTests.java @@ -1,4 +1,4 @@ -package com.neo.controller; +package com.neo.spring.boot.controller; import org.junit.Before; import org.junit.Test; @@ -36,4 +36,4 @@ public void getHello() throws Exception { .andExpect(content().string(equalTo("Hello World"))); } -} \ No newline at end of file +} diff --git a/spring-boot-package-war/src/test/java/com/neo/controller/HelloWorldControlerTests.java b/spring-boot-package-war/src/test/java/com/neo/controller/HelloWorldControlerTests.java index 423d57caa..4f79cd3ec 100644 --- a/spring-boot-package-war/src/test/java/com/neo/controller/HelloWorldControlerTests.java +++ b/spring-boot-package-war/src/test/java/com/neo/controller/HelloWorldControlerTests.java @@ -1,4 +1,4 @@ -package com.neo.controller; +package com.neo.spring.boot.controller; import org.junit.Before; import org.junit.Test; @@ -34,4 +34,4 @@ public void getHello() throws Exception { .andReturn(); } -} \ No newline at end of file +} diff --git a/spring-boot-package-war/target/classes/application.properties b/spring-boot-package-war/target/classes/application.properties new file mode 100644 index 000000000..e69de29bb diff --git a/spring-boot-package-war/target/classes/com/neo/Application.class b/spring-boot-package-war/target/classes/com/neo/Application.class new file mode 100644 index 000000000..332ee8543 Binary files /dev/null and b/spring-boot-package-war/target/classes/com/neo/Application.class differ diff --git a/spring-boot-package-war/target/classes/com/neo/ServletInitializer.class b/spring-boot-package-war/target/classes/com/neo/ServletInitializer.class new file mode 100644 index 000000000..d60e3386c Binary files /dev/null and b/spring-boot-package-war/target/classes/com/neo/ServletInitializer.class differ diff --git a/spring-boot-package-war/target/classes/com/neo/spring/boot/controller/HelloWorldController.class b/spring-boot-package-war/target/classes/com/neo/spring/boot/controller/HelloWorldController.class new file mode 100644 index 000000000..92c2e30fb Binary files /dev/null and b/spring-boot-package-war/target/classes/com/neo/spring/boot/controller/HelloWorldController.class differ diff --git a/spring-boot-package-war/target/maven-archiver/pom.properties b/spring-boot-package-war/target/maven-archiver/pom.properties new file mode 100644 index 000000000..ddfa1e9b1 --- /dev/null +++ b/spring-boot-package-war/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Tue Jul 12 18:39:39 UTC 2022 +groupId=com.neo +artifactId=spring-boot-package-war +version=0.0.2-SNAPSHOT diff --git a/spring-boot-package-war/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 000000000..928de810c --- /dev/null +++ b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,3 @@ +com/neo/Application.class +com/neo/ServletInitializer.class +com/neo/spring/boot/controller/HelloWorldController.class diff --git a/spring-boot-package-war/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 000000000..47df7c1e2 --- /dev/null +++ b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,3 @@ +/home/vagrant/module-2/spring-boot-examples/spring-boot-package-war/src/main/java/com/neo/ServletInitializer.java +/home/vagrant/module-2/spring-boot-examples/spring-boot-package-war/src/main/java/com/neo/Application.java +/home/vagrant/module-2/spring-boot-examples/spring-boot-package-war/src/main/java/com/neo/controller/HelloWorldController.java diff --git a/spring-boot-package-war/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 000000000..6560ee853 --- /dev/null +++ b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,3 @@ +com/neo/spring/boot/controller/HelloWorldControlerTests.class +com/neo/ApplicationTests.class +com/neo/spring/boot/controller/HelloTests.class diff --git a/spring-boot-package-war/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 000000000..5f5b8382e --- /dev/null +++ b/spring-boot-package-war/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,3 @@ +/home/vagrant/module-2/spring-boot-examples/spring-boot-package-war/src/test/java/com/neo/controller/HelloTests.java +/home/vagrant/module-2/spring-boot-examples/spring-boot-package-war/src/test/java/com/neo/controller/HelloWorldControlerTests.java +/home/vagrant/module-2/spring-boot-examples/spring-boot-package-war/src/test/java/com/neo/ApplicationTests.java diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT.war b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT.war new file mode 100644 index 000000000..d31e9c643 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT.war differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT.war.original b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT.war.original new file mode 100644 index 000000000..392aa4d3e Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT.war.original differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/application.properties b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/application.properties new file mode 100644 index 000000000..e69de29bb diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/Application.class b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/Application.class new file mode 100644 index 000000000..332ee8543 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/Application.class differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/ServletInitializer.class b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/ServletInitializer.class new file mode 100644 index 000000000..d60e3386c Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/ServletInitializer.class differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/controller/HelloWorldController.class b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/controller/HelloWorldController.class new file mode 100644 index 000000000..0e7e0076d Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/controller/HelloWorldController.class differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/spring/boot/controller/HelloWorldController.class b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/spring/boot/controller/HelloWorldController.class new file mode 100644 index 000000000..92c2e30fb Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/classes/com/neo/spring/boot/controller/HelloWorldController.class differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/aopalliance-1.0.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/aopalliance-1.0.jar new file mode 100644 index 000000000..578b1a0c3 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/aopalliance-1.0.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/classmate-1.1.0.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/classmate-1.1.0.jar new file mode 100644 index 000000000..bf1d777c5 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/classmate-1.1.0.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/hibernate-validator-5.2.4.Final.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/hibernate-validator-5.2.4.Final.jar new file mode 100644 index 000000000..6fa36e747 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/hibernate-validator-5.2.4.Final.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-annotations-2.6.7.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-annotations-2.6.7.jar new file mode 100644 index 000000000..d28a3add5 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-annotations-2.6.7.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-core-2.6.7.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-core-2.6.7.jar new file mode 100644 index 000000000..d195e85d2 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-core-2.6.7.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-databind-2.6.7.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-databind-2.6.7.jar new file mode 100644 index 000000000..d35b2030f Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jackson-databind-2.6.7.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/javax.activation-api-1.2.0.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/javax.activation-api-1.2.0.jar new file mode 100644 index 000000000..986c36509 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/javax.activation-api-1.2.0.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jaxb-api-2.3.1.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jaxb-api-2.3.1.jar new file mode 100644 index 000000000..456586547 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jaxb-api-2.3.1.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jboss-logging-3.3.0.Final.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jboss-logging-3.3.0.Final.jar new file mode 100644 index 000000000..ea45d4d34 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jboss-logging-3.3.0.Final.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jcl-over-slf4j-1.7.21.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jcl-over-slf4j-1.7.21.jar new file mode 100644 index 000000000..12ba1261a Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jcl-over-slf4j-1.7.21.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jul-to-slf4j-1.7.21.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jul-to-slf4j-1.7.21.jar new file mode 100644 index 000000000..7e3aba12f Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/jul-to-slf4j-1.7.21.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/log4j-over-slf4j-1.7.21.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/log4j-over-slf4j-1.7.21.jar new file mode 100644 index 000000000..7f2d6fcc8 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/log4j-over-slf4j-1.7.21.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/logback-classic-1.1.7.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/logback-classic-1.1.7.jar new file mode 100644 index 000000000..e05c037f6 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/logback-classic-1.1.7.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/logback-core-1.1.7.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/logback-core-1.1.7.jar new file mode 100644 index 000000000..f14819b4a Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/logback-core-1.1.7.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/slf4j-api-1.7.21.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/slf4j-api-1.7.21.jar new file mode 100644 index 000000000..2a5c33ec5 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/slf4j-api-1.7.21.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/snakeyaml-1.16.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/snakeyaml-1.16.jar new file mode 100644 index 000000000..af144fa4c Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/snakeyaml-1.16.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-aop-4.2.7.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-aop-4.2.7.RELEASE.jar new file mode 100644 index 000000000..14305d607 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-aop-4.2.7.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-beans-4.2.7.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-beans-4.2.7.RELEASE.jar new file mode 100644 index 000000000..eaff9e51a Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-beans-4.2.7.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-1.3.6.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-1.3.6.RELEASE.jar new file mode 100644 index 000000000..cdece52c8 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-1.3.6.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-autoconfigure-1.3.6.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-autoconfigure-1.3.6.RELEASE.jar new file mode 100644 index 000000000..669e3cf2c Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-autoconfigure-1.3.6.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-1.3.6.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-1.3.6.RELEASE.jar new file mode 100644 index 000000000..42cc66c9e Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-1.3.6.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-logging-1.3.6.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-logging-1.3.6.RELEASE.jar new file mode 100644 index 000000000..c30ba6042 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-logging-1.3.6.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-validation-1.3.6.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-validation-1.3.6.RELEASE.jar new file mode 100644 index 000000000..8feeb5ca2 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-validation-1.3.6.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-web-1.3.6.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-web-1.3.6.RELEASE.jar new file mode 100644 index 000000000..6d87df028 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-boot-starter-web-1.3.6.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-context-4.2.7.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-context-4.2.7.RELEASE.jar new file mode 100644 index 000000000..82dc42314 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-context-4.2.7.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-core-4.2.7.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-core-4.2.7.RELEASE.jar new file mode 100644 index 000000000..63a0ce428 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-core-4.2.7.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-expression-4.2.7.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-expression-4.2.7.RELEASE.jar new file mode 100644 index 000000000..8fa6ef4e5 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-expression-4.2.7.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-web-4.2.7.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-web-4.2.7.RELEASE.jar new file mode 100644 index 000000000..96f10ddda Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-web-4.2.7.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-webmvc-4.2.7.RELEASE.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-webmvc-4.2.7.RELEASE.jar new file mode 100644 index 000000000..b35d5f75d Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/spring-webmvc-4.2.7.RELEASE.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/tomcat-embed-el-8.0.36.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/tomcat-embed-el-8.0.36.jar new file mode 100644 index 000000000..30c885be7 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/tomcat-embed-el-8.0.36.jar differ diff --git a/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/validation-api-1.1.0.Final.jar b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/validation-api-1.1.0.Final.jar new file mode 100644 index 000000000..de8540386 Binary files /dev/null and b/spring-boot-package-war/target/spring-boot-package-war-0.0.2-SNAPSHOT/WEB-INF/lib/validation-api-1.1.0.Final.jar differ diff --git a/spring-boot-package-war/target/surefire-reports/TEST-com.neo.ApplicationTests.xml b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.ApplicationTests.xml new file mode 100644 index 000000000..7d8c4d932 --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.ApplicationTests.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spring-boot-package-war/target/surefire-reports/TEST-com.neo.controller.HelloTests.xml b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.controller.HelloTests.xml new file mode 100644 index 000000000..f1a042c08 --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.controller.HelloTests.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spring-boot-package-war/target/surefire-reports/TEST-com.neo.controller.HelloWorldControlerTests.xml b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.controller.HelloWorldControlerTests.xml new file mode 100644 index 000000000..033dc25ee --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.controller.HelloWorldControlerTests.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spring-boot-package-war/target/surefire-reports/TEST-com.neo.spring.boot.controller.HelloTests.xml b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.spring.boot.controller.HelloTests.xml new file mode 100644 index 000000000..eb1a801bd --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.spring.boot.controller.HelloTests.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spring-boot-package-war/target/surefire-reports/TEST-com.neo.spring.boot.controller.HelloWorldControlerTests.xml b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.spring.boot.controller.HelloWorldControlerTests.xml new file mode 100644 index 000000000..1978e8bec --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/TEST-com.neo.spring.boot.controller.HelloWorldControlerTests.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spring-boot-package-war/target/surefire-reports/com.neo.ApplicationTests.txt b/spring-boot-package-war/target/surefire-reports/com.neo.ApplicationTests.txt new file mode 100644 index 000000000..6888dfb70 --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/com.neo.ApplicationTests.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.neo.ApplicationTests +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.918 sec - in com.neo.ApplicationTests diff --git a/spring-boot-package-war/target/surefire-reports/com.neo.controller.HelloTests.txt b/spring-boot-package-war/target/surefire-reports/com.neo.controller.HelloTests.txt new file mode 100644 index 000000000..2015186e3 --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/com.neo.controller.HelloTests.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.neo.controller.HelloTests +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044 sec - in com.neo.controller.HelloTests diff --git a/spring-boot-package-war/target/surefire-reports/com.neo.controller.HelloWorldControlerTests.txt b/spring-boot-package-war/target/surefire-reports/com.neo.controller.HelloWorldControlerTests.txt new file mode 100644 index 000000000..cf9fbbf61 --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/com.neo.controller.HelloWorldControlerTests.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.neo.controller.HelloWorldControlerTests +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.617 sec - in com.neo.controller.HelloWorldControlerTests diff --git a/spring-boot-package-war/target/surefire-reports/com.neo.spring.boot.controller.HelloTests.txt b/spring-boot-package-war/target/surefire-reports/com.neo.spring.boot.controller.HelloTests.txt new file mode 100644 index 000000000..062a84d37 --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/com.neo.spring.boot.controller.HelloTests.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.neo.spring.boot.controller.HelloTests +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029 sec - in com.neo.spring.boot.controller.HelloTests diff --git a/spring-boot-package-war/target/surefire-reports/com.neo.spring.boot.controller.HelloWorldControlerTests.txt b/spring-boot-package-war/target/surefire-reports/com.neo.spring.boot.controller.HelloWorldControlerTests.txt new file mode 100644 index 000000000..2d7926479 --- /dev/null +++ b/spring-boot-package-war/target/surefire-reports/com.neo.spring.boot.controller.HelloWorldControlerTests.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.neo.spring.boot.controller.HelloWorldControlerTests +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.187 sec - in com.neo.spring.boot.controller.HelloWorldControlerTests diff --git a/spring-boot-package-war/target/test-classes/com/neo/ApplicationTests.class b/spring-boot-package-war/target/test-classes/com/neo/ApplicationTests.class new file mode 100644 index 000000000..c01088a9e Binary files /dev/null and b/spring-boot-package-war/target/test-classes/com/neo/ApplicationTests.class differ diff --git a/spring-boot-package-war/target/test-classes/com/neo/spring/boot/controller/HelloTests.class b/spring-boot-package-war/target/test-classes/com/neo/spring/boot/controller/HelloTests.class new file mode 100644 index 000000000..bbf2bd3b6 Binary files /dev/null and b/spring-boot-package-war/target/test-classes/com/neo/spring/boot/controller/HelloTests.class differ diff --git a/spring-boot-package-war/target/test-classes/com/neo/spring/boot/controller/HelloWorldControlerTests.class b/spring-boot-package-war/target/test-classes/com/neo/spring/boot/controller/HelloWorldControlerTests.class new file mode 100644 index 000000000..337ab4ee1 Binary files /dev/null and b/spring-boot-package-war/target/test-classes/com/neo/spring/boot/controller/HelloWorldControlerTests.class differ