pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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.ctsi</groupId>
  7. <artifactId>myframe</artifactId>
  8. <version>2.5.15</version>
  9. <modules>
  10. <module>application</module>
  11. <module>core</module>
  12. <module>work</module>
  13. </modules>
  14. <packaging>pom</packaging>
  15. <name>myframe</name>
  16. <description>我的框架</description>
  17. <properties>
  18. <org.springframework.boot-version>2.2.5.RELEASE</org.springframework.boot-version>
  19. <org.projectlombok.lombok-version>1.18.26</org.projectlombok.lombok-version>
  20. </properties>
  21. <dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-dependencies</artifactId>
  26. <version>${org.springframework.boot-version}</version>
  27. <type>pom</type>
  28. <scope>import</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <version>${org.projectlombok.lombok-version}</version>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. </project>