pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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>rw-training</artifactId>
  7. <groupId>com.rongwei</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>training-common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.rongwei</groupId>
  15. <artifactId>training-entity</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>e-iceblue</groupId>
  20. <artifactId>spire.doc.free</artifactId>
  21. <version>5.1.0</version>
  22. </dependency>
  23. </dependencies>
  24. <repositories>
  25. <repository>
  26. <id>com.e-iceblue</id>
  27. <url>http://repo.e-iceblue.cn/repository/maven-public/</url>
  28. </repository>
  29. </repositories>
  30. </project>