2
0

pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.vv</groupId>
  6. <artifactId>vote-verification</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.vv.services</groupId>
  10. <artifactId>vote-verification-services</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Online Voting - Vote Verification - Services</name>
  13. <dependencies>
  14. <!-- Local dependencies -->
  15. <!-- OV Commons -->
  16. <dependency>
  17. <groupId>com.scytl.products.ov.channel.commons</groupId>
  18. <artifactId>ov-commons-logging</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  22. <artifactId>ov-commons-lib-persistence</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.scytl.products.ov.channel.commons</groupId>
  26. <artifactId>ov-commons-beans</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.scytl.products.ov.channel.commons</groupId>
  30. <artifactId>ov-commons-infrastructure</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.scytl.products.ov.channel.commons</groupId>
  34. <artifactId>ov-commons-dto</artifactId>
  35. </dependency>
  36. <!-- JPA Service provider -->
  37. <dependency>
  38. <groupId>org.hibernate</groupId>
  39. <artifactId>hibernate-entitymanager</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.scytl.math</groupId>
  43. <artifactId>scytl-math</artifactId>
  44. <version>${scytl-math.version}</version>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. <profiles>
  49. <profile>
  50. <id>skipTestRun</id>
  51. <activation>
  52. <property>
  53. <name>skipTests</name>
  54. <value>!true</value>
  55. </property>
  56. </activation>
  57. <dependencies>
  58. <dependency>
  59. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  60. <artifactId>ov-commons-lib-persistence</artifactId>
  61. <version>${project.version}</version>
  62. <type>test-jar</type>
  63. <scope>test</scope>
  64. </dependency>
  65. </dependencies>
  66. </profile>
  67. </profiles>
  68. </project>