pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <version>3.1.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-starter</artifactId>
  11. <packaging>pom</packaging>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <modules>
  17. <module>jeecg-boot-starter-cloud</module>
  18. <module>jeecg-boot-starter-job</module>
  19. <module>jeecg-boot-starter-lock</module>
  20. <module>jeecg-boot-starter-rabbitmq</module>
  21. <module>jeecg-boot-starter-shardingsphere</module>
  22. <module>jeecg-boot-starter-seata</module>
  23. </modules>
  24. <dependencies>
  25. <!--jeecg-tools-->
  26. <dependency>
  27. <groupId>org.jeecgframework.boot</groupId>
  28. <artifactId>jeecg-boot-base-tools</artifactId>
  29. </dependency>
  30. <!--加载配置信息-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-autoconfigure</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-configuration-processor</artifactId>
  38. <optional>true</optional>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <configuration>
  46. <source>1.8</source>
  47. <target>1.8</target>
  48. <encoding>UTF-8</encoding>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>