pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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>spe</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>spe-logic</artifactId>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-test</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>${parent.groupId}</groupId>
  26. <artifactId>jwipc-web</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>${parent.groupId}</groupId>
  31. <artifactId>spe-infra</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>${parent.groupId}</groupId>
  35. <artifactId>sys-client</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>${parent.groupId}</groupId>
  39. <artifactId>supplier-client</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.jwipc</groupId>
  43. <artifactId>jwipc-log</artifactId>
  44. </dependency>
  45. </dependencies>
  46. </project>