pom.xml 1.4 KB

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