pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.scytl.products.ov.channel.ag</groupId>
  6. <artifactId>api-gateway</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.ag.services</groupId>
  10. <artifactId>api-gateway-services</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Online Voting - API Gateway - Services</name>
  13. <dependencies>
  14. <!-- Local dependencies -->
  15. <!-- OV Commons -->
  16. <dependency>
  17. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  18. <artifactId>ov-commons-lib</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <artifactId>ov-commons-lib-persistence</artifactId>
  22. <groupId>
  23. com.scytl.products.ov.channel.commons.lib
  24. </groupId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.scytl.products.ov.channel.commons</groupId>
  30. <artifactId>ov-commons-beans</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.scytl.products.ov.channel.commons</groupId>
  34. <artifactId>ov-commons-infrastructure</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-io</groupId>
  38. <artifactId>commons-io</artifactId>
  39. </dependency>
  40. </dependencies>
  41. </project>