diff --git a/springboot-web-req-resp/.gitignore b/springboot-web-req-resp/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/springboot-web-req-resp/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/springboot-web-req-resp/pom.xml b/springboot-web-req-resp/pom.xml new file mode 100644 index 0000000..ea7ff77 --- /dev/null +++ b/springboot-web-req-resp/pom.xml @@ -0,0 +1,72 @@ + + + 4.0.0 + com.inmind + springboot-web-req-resp + 0.0.1-SNAPSHOT + springboot-web-req-resp + springboot-web-req-resp + + 11 + UTF-8 + UTF-8 + 2.7.6 + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 11 + 11 + UTF-8 + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + com.inmind.SpringbootWebReqRespApplication + true + + + + repackage + + repackage + + + + + + + +