pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.scytl.products.ov.channel.ei</groupId>
  6. <artifactId>election-information</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.ei.service</groupId>
  10. <artifactId>election-information-services</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Online Voting - Election Information - Services</name>
  13. <properties>
  14. <opencsv.version>3.5</opencsv.version>
  15. </properties>
  16. <dependencies>
  17. <!-- Local dependencies -->
  18. <!-- OV Commons -->
  19. <dependency>
  20. <groupId>com.scytl.products.ov.channel.commons</groupId>
  21. <artifactId>ov-commons-logging</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.scytl.products.ov.channel.commons</groupId>
  25. <artifactId>ov-commons-dto</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  29. <artifactId>ov-commons-lib-persistence</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.scytl.products.ov.channel.commons</groupId>
  33. <artifactId>ov-commons-infrastructure</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.scytl.products.ov.channel.commons</groupId>
  37. <artifactId>ov-commons-sign</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.scytl.products.ov.channel.commons</groupId>
  41. <artifactId>ov-commons-correctness</artifactId>
  42. </dependency>
  43. <dependency>
  44. <artifactId>cryptolib-certificates</artifactId>
  45. <groupId>com.scytl.cryptolib</groupId>
  46. </dependency>
  47. <dependency>
  48. <artifactId>cryptolib-api-asymmetric</artifactId>
  49. <groupId>com.scytl.cryptolib</groupId>
  50. </dependency>
  51. <!-- JPA Service provider -->
  52. <dependency>
  53. <groupId>org.hibernate</groupId>
  54. <artifactId>hibernate-entitymanager</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-io</groupId>
  58. <artifactId>commons-io</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.commons</groupId>
  62. <artifactId>commons-lang3</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.scytl.math</groupId>
  66. <artifactId>scytl-math</artifactId>
  67. <version>${scytl-math.version}</version>
  68. <scope>test</scope>
  69. </dependency>
  70. </dependencies>
  71. <profiles>
  72. <profile>
  73. <id>skipTestRun</id>
  74. <activation>
  75. <property>
  76. <name>skipTests</name>
  77. <value>!true</value>
  78. </property>
  79. </activation>
  80. <dependencies>
  81. <dependency>
  82. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  83. <artifactId>ov-commons-lib-persistence</artifactId>
  84. <type>test-jar</type>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.scytl.products.ov.channel.commons</groupId>
  89. <artifactId>ov-commons-sign</artifactId>
  90. <version>${project.version}</version>
  91. <scope>test</scope>
  92. <type>test-jar</type>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.scytl.products.ov.channel.commons</groupId>
  96. <artifactId>ov-commons-dto</artifactId>
  97. <version>${project.version}</version>
  98. <type>test-jar</type>
  99. <scope>test</scope>
  100. </dependency>
  101. </dependencies>
  102. </profile>
  103. </profiles>
  104. </project>