From 6bfa942308e687a57e987481a62f4192f92c4d6b Mon Sep 17 00:00:00 2001 From: Todd Gao Date: Tue, 19 Mar 2019 10:47:43 +0800 Subject: [PATCH] Add root pom.xml Make it easy to import by IDE, like IntelliJ IDEA --- .gitignore | 4 ++++ pom.xml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..991728c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.idea/ +target/ +*.iml + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..07940ab --- /dev/null +++ b/pom.xml @@ -0,0 +1,59 @@ + + + 4.0.0 + + com.example + spring-boot-examples + pom + 2.0.0 + + + spring-boot-actuator + spring-boot-admin-simple + spring-boot-banner + spring-boot-commandLineRunner + spring-boot-docker + spring-boot-fastDFS + spring-boot-file-upload + spring-boot-hello + spring-boot-helloWorld + spring-boot-jpa/spring-boot-jpa + spring-boot-jpa/spring-boot-multi-Jpa + spring-boot-jpa-thymeleaf-curd + spring-boot-mail + spring-boot-memcache-spymemcached + spring-boot-mongodb/spring-boot-mongodb + spring-boot-mongodb/spring-boot-multi-mongodb + spring-boot-mybatis/spring-boot-mybatis-annotation + spring-boot-mybatis/spring-boot-mybatis-annotation-mulidatasource + spring-boot-mybatis/spring-boot-mybatis-xml + spring-boot-mybatis/spring-boot-mybatis-xml-mulidatasource + spring-boot-package + spring-boot-package-war + spring-boot-rabbitmq + spring-boot-redis + spring-boot-scheduler + spring-boot-shiro + spring-boot-thymeleaf/spring-boot-thymeleaf + spring-boot-thymeleaf/spring-boot-thymeleaf-layout + spring-boot-web + spring-boot-web-thymeleaf + spring-boot-webflux + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.8 + 1.8 + + + + + \ No newline at end of file -- GitLab