pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <parent>
  6. <artifactId>cath</artifactId>
  7. <groupId>com.cath</groupId>
  8. <version>3.8.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>cath-wms</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!-- common通用工具 -->
  18. <dependency>
  19. <groupId>com.cath</groupId>
  20. <artifactId>cath-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. </dependency>
  26. <!--system系统模块-->
  27. <dependency>
  28. <groupId>com.cath</groupId>
  29. <artifactId>cath-system</artifactId>
  30. </dependency>
  31. <!--开思系统设置-->
  32. <dependency>
  33. <groupId>com.cath</groupId>
  34. <artifactId>cath-set</artifactId>
  35. <version>3.8.5</version>
  36. </dependency>
  37. <!--开思基础资料-->
  38. <dependency>
  39. <groupId>com.cath</groupId>
  40. <artifactId>cath-base</artifactId>
  41. <version>3.8.5</version>
  42. </dependency>
  43. <!--接口-->
  44. <dependency>
  45. <groupId>com.cath</groupId>
  46. <artifactId>cath-interface</artifactId>
  47. <version>3.8.5</version>
  48. </dependency>
  49. </dependencies>
  50. </project>