pom.xml 1023 B

12345678910111213141516171819202122232425262728293031323334
  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. <groupId>com.ozs</groupId>
  7. <artifactId>purchase</artifactId>
  8. <version>1.0.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>purchase-system</artifactId>
  13. <description>
  14. system系统模块
  15. </description>
  16. <dependencies>
  17. <!-- 通用工具-->
  18. <dependency>
  19. <groupId>com.ozs</groupId>
  20. <artifactId>purchase-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.hibernate.javax.persistence</groupId>
  24. <artifactId>hibernate-jpa-2.0-api</artifactId>
  25. <version>1.0.1.Final</version>
  26. </dependency>
  27. </dependencies>
  28. </project>