pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>contract</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>contract-client-impl</artifactId>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${parent.groupId}</groupId>
  16. <artifactId>contract-client</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>${parent.groupId}</groupId>
  20. <artifactId>contract-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>${parent.groupId}</groupId>
  33. <artifactId>jwipc-web</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mapstruct</groupId>
  38. <artifactId>mapstruct</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. </dependencies>
  42. </project>