pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>inquiry</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>inquiry-logic</artifactId>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${parent.groupId}</groupId>
  16. <artifactId>jwipc-web</artifactId>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>${parent.groupId}</groupId>
  21. <artifactId>inquiry-client-base</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>${parent.groupId}</groupId>
  25. <artifactId>inquiry-infra</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>${parent.groupId}</groupId>
  29. <artifactId>sys-client</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>${parent.groupId}</groupId>
  33. <artifactId>supplier-client</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>${parent.groupId}</groupId>
  37. <artifactId>tender-client</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.jwipc</groupId>
  41. <artifactId>jwipc-log</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.jwipc</groupId>
  45. <artifactId>sys-logic</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>${parent.groupId}</groupId>
  49. <artifactId>shoppingMall-client</artifactId>
  50. </dependency>
  51. </dependencies>
  52. </project>