pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.example</groupId>
  7. <artifactId>spring-boot-examples</artifactId>
  8. <packaging>pom</packaging>
  9. <version>2.0.0</version>
  10. <modules>
  11. <module>spring-boot-actuator</module>
  12. <module>spring-boot-admin-simple</module>
  13. <module>spring-boot-banner</module>
  14. <module>spring-boot-commandLineRunner</module>
  15. <module>spring-boot-docker</module>
  16. <module>spring-boot-fastDFS</module>
  17. <module>spring-boot-file-upload</module>
  18. <module>spring-boot-hello</module>
  19. <module>spring-boot-helloWorld</module>
  20. <module>spring-boot-jpa/spring-boot-jpa</module>
  21. <module>spring-boot-jpa/spring-boot-multi-Jpa</module>
  22. <module>spring-boot-jpa-thymeleaf-curd</module>
  23. <module>spring-boot-mail</module>
  24. <module>spring-boot-memcache-spymemcached</module>
  25. <module>spring-boot-mongodb/spring-boot-mongodb</module>
  26. <module>spring-boot-mongodb/spring-boot-multi-mongodb</module>
  27. <module>spring-boot-mybatis/spring-boot-mybatis-annotation</module>
  28. <module>spring-boot-mybatis/spring-boot-mybatis-annotation-mulidatasource</module>
  29. <module>spring-boot-mybatis/spring-boot-mybatis-xml</module>
  30. <module>spring-boot-mybatis/spring-boot-mybatis-xml-mulidatasource</module>
  31. <module>spring-boot-package</module>
  32. <module>spring-boot-package-war</module>
  33. <module>spring-boot-rabbitmq</module>
  34. <module>spring-boot-redis</module>
  35. <module>spring-boot-scheduler</module>
  36. <module>spring-boot-shiro</module>
  37. <module>spring-boot-thymeleaf/spring-boot-thymeleaf</module>
  38. <module>spring-boot-thymeleaf/spring-boot-thymeleaf-layout</module>
  39. <module>spring-boot-web</module>
  40. <module>spring-boot-web-thymeleaf</module>
  41. <module>spring-boot-webflux</module>
  42. </modules>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.1</version>
  49. <configuration>
  50. <source>1.8</source>
  51. <target>1.8</target>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>