pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.nokia</groupId>
  7. <artifactId>report_auto</artifactId>
  8. <version>1.0</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>common</module>
  12. <module>dingtalk_auto</module>
  13. <module>tsl_data</module>
  14. </modules>
  15. <properties>
  16. <!-- 指定java的版本 -->
  17. <java.version>1.8</java.version>
  18. <!-- 指定编译的版本 -->
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  22. </properties>
  23. <dependencyManagement>
  24. <dependencies>
  25. <!-- 当不把spring-boot-parent
  26. 作为parent项目时,需要使用dependencyManagement引入spring-boot-dependencies管理依赖 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-dependencies</artifactId>
  30. <version>2.6.14</version>
  31. <type>pom</type>
  32. <scope>import</scope>
  33. </dependency>
  34. </dependencies>
  35. </dependencyManagement>
  36. </project>