pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.wsm</groupId>
  6. <artifactId>wsm-admin-service</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <name>wsm-admin-service</name>
  10. <description>wsm admin service project</description>
  11. <parent>
  12. <groupId>com.wsm</groupId>
  13. <artifactId>wsm-base</artifactId>
  14. <version>1.0.0</version>
  15. <relativePath>../pom.xml</relativePath>
  16. </parent>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.wsm</groupId>
  20. <artifactId>wsm-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.wsm</groupId>
  24. <artifactId>wsm-admin-dao</artifactId>
  25. </dependency>
  26. </dependencies>
  27. </project>