pom.xml 1.4 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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.jwipc</groupId>
  8. <artifactId>shoppingMall</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>shoppingMall-client-impl</artifactId>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${parent.groupId}</groupId>
  16. <artifactId>shoppingMall-client</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>${parent.groupId}</groupId>
  20. <artifactId>shoppingMall-logic</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>${parent.groupId}</groupId>
  24. <artifactId>jwipc-util</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-context</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mapstruct</groupId>
  33. <artifactId>mapstruct</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. </dependencies>
  37. </project>