pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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</groupId>
  6. <artifactId>ov-channel</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.cc</groupId>
  10. <artifactId>control-components</artifactId>
  11. <packaging>pom</packaging>
  12. <name>Online Voting - Control Components</name>
  13. <properties>
  14. <commons-logging.version>1.1.1</commons-logging.version>
  15. <jsr305.version>3.0.2</jsr305.version>
  16. <log4j.version>1.2.17</log4j.version>
  17. <ojdbc8.version>18.3.0.0.0</ojdbc8.version>
  18. <hikapicp.version>3.2.0</hikapicp.version>
  19. <h2.version>1.4.197</h2.version>
  20. </properties>
  21. <dependencyManagement>
  22. <dependencies>
  23. <!-- dependency management from Spring Boot -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-dependencies</artifactId>
  27. <version>${spring-boot.version}</version>
  28. <type>pom</type>
  29. <scope>import</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>commons-logging</groupId>
  33. <artifactId>commons-logging</artifactId>
  34. <version>${commons-logging.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  38. <artifactId>ov-commons-lib</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.scytl.products.ov.channel.commons</groupId>
  43. <artifactId>ov-commons-messaging</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.scytl.cryptolib</groupId>
  48. <artifactId>cryptolib-api-asymmetric</artifactId>
  49. <version>${cryptolib.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.scytl.cryptolib</groupId>
  53. <artifactId>cryptolib-asymmetric</artifactId>
  54. <version>${cryptolib.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.scytl.cryptolib</groupId>
  58. <artifactId>cryptolib-api-certificates</artifactId>
  59. <version>${cryptolib.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.scytl.cryptolib</groupId>
  63. <artifactId>cryptolib-certificates</artifactId>
  64. <version>${cryptolib.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.scytl.cryptolib</groupId>
  68. <artifactId>cryptolib-api-elgamal</artifactId>
  69. <version>${cryptolib.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.scytl.cryptolib</groupId>
  73. <artifactId>cryptolib-elgamal</artifactId>
  74. <version>${cryptolib.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.scytl.cryptolib</groupId>
  78. <artifactId>cryptolib-api-primitives</artifactId>
  79. <version>${cryptolib.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.scytl.cryptolib</groupId>
  83. <artifactId>cryptolib-primitives</artifactId>
  84. <version>${cryptolib.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.scytl.cryptolib</groupId>
  88. <artifactId>cryptolib-api-proofs</artifactId>
  89. <version>${cryptolib.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.scytl.cryptolib</groupId>
  93. <artifactId>cryptolib-proofs</artifactId>
  94. <version>${cryptolib.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.scytl.cryptolib</groupId>
  98. <artifactId>cryptolib-api-stores</artifactId>
  99. <version>${cryptolib.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.scytl.cryptolib</groupId>
  103. <artifactId>cryptolib-stores</artifactId>
  104. <version>${cryptolib.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.scytl.cryptolib</groupId>
  108. <artifactId>cryptolib-default-policies</artifactId>
  109. <version>${cryptolib.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.scytl.math</groupId>
  113. <artifactId>scytl-math</artifactId>
  114. <version>${scytl-math.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.google.code.findbugs</groupId>
  118. <artifactId>jsr305</artifactId>
  119. <version>${jsr305.version}</version>
  120. <scope>provided</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.oracle</groupId>
  124. <artifactId>ojdbc8</artifactId>
  125. <version>${ojdbc8.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.zaxxer</groupId>
  129. <artifactId>HikariCP</artifactId>
  130. <version>${hikapicp.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>log4j</groupId>
  134. <artifactId>log4j</artifactId>
  135. <version>${log4j.version}</version>
  136. </dependency>
  137. <!-- ONLINE VOTING DEPENDENCIES -->
  138. <dependency>
  139. <groupId>com.scytl.products.ov.channel.commons</groupId>
  140. <artifactId>ov-commons-dto</artifactId>
  141. <version>${project.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  145. <artifactId>ov-commons-lib-persistence</artifactId>
  146. <version>${project.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.scytl.products.ov.channel.commons</groupId>
  150. <artifactId>ov-commons-beans</artifactId>
  151. <version>${project.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.scytl.products.ov.channel.commons</groupId>
  155. <artifactId>ov-commons-infrastructure</artifactId>
  156. <version>${project.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.scytl.products.ov.channel.commons</groupId>
  160. <artifactId>ov-commons-sign</artifactId>
  161. <version>${project.version}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.h2database</groupId>
  165. <artifactId>h2</artifactId>
  166. <version>${h2.version}</version>
  167. </dependency>
  168. </dependencies>
  169. </dependencyManagement>
  170. <modules>
  171. <module>control-components-commons</module>
  172. <module>control-components-test</module>
  173. <module>choice-codes-generation</module>
  174. <module>choice-codes-verification</module>
  175. <module>distributed-mixing</module>
  176. <module>orchestrator</module>
  177. </modules>
  178. </project>