pom.xml 909 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. <parent>
  6. <artifactId>jwipc-dependency</artifactId>
  7. <groupId>com.jwipc</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../jwipc-dependency/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>shoppingMall</artifactId>
  13. <name>${project.artifactId}</name>
  14. <packaging>pom</packaging>
  15. <modules>
  16. <module>shoppingMall-client</module>
  17. <module>shoppingMall-client-base</module>
  18. <module>shoppingMall-client-impl</module>
  19. <module>shoppingMall-infra</module>
  20. <module>shoppingMall-logic</module>
  21. </modules>
  22. </project>