pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <groupId>com.jwipc</groupId>
  7. <artifactId>contract</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>contract-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>contract-infra</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>${parent.groupId}</groupId>
  35. <artifactId>sys-client</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.jwipc</groupId>
  39. <artifactId>tender-client</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.jwipc</groupId>
  43. <artifactId>inquiry-client</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>${parent.groupId}</groupId>
  47. <artifactId>finance-client</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.jwipc</groupId>
  51. <artifactId>jwipc-log</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.jwipc</groupId>
  55. <artifactId>supplier-client</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.jwipc</groupId>
  59. <artifactId>sys-logic</artifactId>
  60. </dependency>
  61. </dependencies>
  62. </project>