pom.xml 966 B

12345678910111213141516171819202122232425
  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.jwipc</groupId>
  8. <artifactId>jwipc-dependency</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../jwipc-dependency/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>spe</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>供应商绩效考核模块 SPE是供应商Supplier Performance Evaluation缩写</description>
  15. <packaging>pom</packaging>
  16. <modules>
  17. <module>spe-client-base</module>
  18. <module>spe-client</module>
  19. <module>spe-client-impl</module>
  20. <module>spe-infra</module>
  21. <module>spe-logic</module>
  22. </modules>
  23. </project>