pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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>lift-server</artifactId>
  7. <groupId>cn.com.ty</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>lift-system-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.com.xwy</groupId>
  15. <artifactId>xwy-spring-boot</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.com.xwy</groupId>
  19. <artifactId>xwy-cloud-dependencies</artifactId>
  20. </dependency>
  21. <!-- 添加公共模块依赖 -->
  22. <dependency>
  23. <groupId>cn.com.ty</groupId>
  24. <artifactId>lift-common</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </dependency>
  27. <!--Apache 公共bean工具包 -->
  28. <dependency>
  29. <groupId>commons-beanutils</groupId>
  30. <artifactId>commons-beanutils</artifactId>
  31. <version>1.9.3</version>
  32. </dependency>
  33. </dependencies>
  34. </project>