pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <parent>
  7. <groupId>com.hys.app</groupId>
  8. <artifactId>warehouse</artifactId>
  9. <version>7.2.2</version>
  10. </parent>
  11. <artifactId>server</artifactId>
  12. <description>
  13. SpringBoot启动容器
  14. 引入所有业务模块 module-xxx 的依赖
  15. </description>
  16. <dependencies>
  17. <!-- erp模块 -->
  18. <dependency>
  19. <groupId>com.hys.app</groupId>
  20. <artifactId>module-erp</artifactId>
  21. <version>${erp-version}</version>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-maven-plugin</artifactId>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-surefire-plugin</artifactId>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <properties>
  37. <maven.compiler.source>8</maven.compiler.source>
  38. <maven.compiler.target>8</maven.compiler.target>
  39. </properties>
  40. </project>