pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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>erp</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. <!-- openapi模块 -->
  24. <dependency>
  25. <groupId>com.hys.app</groupId>
  26. <artifactId>module-openapi</artifactId>
  27. <version>${erp-version}</version>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-surefire-plugin</artifactId>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. <properties>
  43. <maven.compiler.source>8</maven.compiler.source>
  44. <maven.compiler.target>8</maven.compiler.target>
  45. </properties>
  46. </project>