pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.scytl.products.ov.channel</groupId>
  7. <artifactId>ov-channel</artifactId>
  8. <version>2.1.7</version>
  9. </parent>
  10. <groupId>com.scytl.products.ov.channel.commons</groupId>
  11. <artifactId>ov-commons</artifactId>
  12. <packaging>pom</packaging>
  13. <name>Online Voting Commons</name>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <httpcomponents.version>4.5.1</httpcomponents.version>
  18. </properties>
  19. <build>
  20. <pluginManagement>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-javadoc-plugin</artifactId>
  25. <configuration>
  26. <failOnError>false</failOnError>
  27. </configuration>
  28. </plugin>
  29. </plugins>
  30. </pluginManagement>
  31. </build>
  32. <dependencies>
  33. <!-- Logging -->
  34. <dependency>
  35. <groupId>org.slf4j</groupId>
  36. <artifactId>slf4j-api</artifactId>
  37. </dependency>
  38. <!-- JavaEE -->
  39. <dependency>
  40. <groupId>org.apache.openejb</groupId>
  41. <artifactId>javaee-api</artifactId>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.glassfish</groupId>
  46. <artifactId>javax.json</artifactId>
  47. <version>${javax.json.version}</version>
  48. </dependency>
  49. <!-- retrofit -->
  50. <dependency>
  51. <groupId>com.squareup.retrofit2</groupId>
  52. <artifactId>retrofit</artifactId>
  53. <version>${retrofit.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.squareup.retrofit2</groupId>
  57. <artifactId>converter-jackson</artifactId>
  58. <version>${retrofit.version}</version>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>com.fasterxml.jackson.core</groupId>
  62. <artifactId>jackson-databind</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.squareup.okhttp3</groupId>
  68. <artifactId>okhttp</artifactId>
  69. <version>${okhttp.version}</version>
  70. </dependency>
  71. <!-- Testing -->
  72. <dependency>
  73. <groupId>org.jmockit</groupId>
  74. <artifactId>jmockit</artifactId>
  75. <version>${jmockit.version}</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>junit</groupId>
  80. <artifactId>junit</artifactId>
  81. <version>${junit.version}</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.mockito</groupId>
  86. <artifactId>mockito-core</artifactId>
  87. <version>${mockito.version}</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <!-- Apache commons -->
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-lang3</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-configuration</groupId>
  97. <artifactId>commons-configuration</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>commons-io</groupId>
  101. <artifactId>commons-io</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>commons-codec</groupId>
  105. <artifactId>commons-codec</artifactId>
  106. </dependency>
  107. <!-- jackson for json processing (this is used for annotations in DTOs) -->
  108. <dependency>
  109. <groupId>com.fasterxml.jackson.core</groupId>
  110. <artifactId>jackson-annotations</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  114. <artifactId>jackson-jaxrs-json-provider</artifactId>
  115. <exclusions>
  116. <exclusion>
  117. <groupId>com.fasterxml.jackson.core</groupId>
  118. <artifactId>jackson-databind</artifactId>
  119. </exclusion>
  120. </exclusions>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.fasterxml.jackson.core</groupId>
  124. <artifactId>jackson-core</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.fasterxml.jackson.datatype</groupId>
  128. <artifactId>jackson-datatype-jsr310</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.scytl.cryptolib</groupId>
  132. <artifactId>cryptolib-commons</artifactId>
  133. <version>${cryptolib.version}</version>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>com.fasterxml.jackson.core</groupId>
  137. <artifactId>jackson-databind</artifactId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>io.jsonwebtoken</groupId>
  143. <artifactId>jjwt</artifactId>
  144. <version>${jwt.version}</version>
  145. <exclusions>
  146. <exclusion>
  147. <groupId>com.fasterxml.jackson.core</groupId>
  148. <artifactId>jackson-databind</artifactId>
  149. </exclusion>
  150. </exclusions>
  151. </dependency>
  152. </dependencies>
  153. <dependencyManagement>
  154. <dependencies>
  155. <dependency>
  156. <groupId>com.fasterxml.jackson.core</groupId>
  157. <artifactId>jackson-annotations</artifactId>
  158. <version>${jackson.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.fasterxml.jackson.core</groupId>
  162. <artifactId>jackson-core</artifactId>
  163. <version>${jackson.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.fasterxml.jackson.datatype</groupId>
  167. <artifactId>jackson-datatype-jsr310</artifactId>
  168. <version>${jackson.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.fasterxml.jackson.core</groupId>
  172. <artifactId>jackson-databind</artifactId>
  173. <version>${jackson.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  177. <artifactId>jackson-jaxrs-base</artifactId>
  178. <version>${jackson.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  182. <artifactId>jackson-jaxrs-json-provider</artifactId>
  183. <version>${jackson.version}</version>
  184. </dependency>
  185. <!-- Apache HTTP Components -->
  186. <dependency>
  187. <groupId>org.apache.httpcomponents</groupId>
  188. <artifactId>httpclient</artifactId>
  189. <version>${httpcomponents.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.fasterxml.jackson.dataformat</groupId>
  193. <artifactId>jackson-dataformat-csv</artifactId>
  194. <version>${jackson.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.bouncycastle</groupId>
  198. <artifactId>bcprov-jdk15on</artifactId>
  199. <version>${bouncycastle.version}</version>
  200. <!-- The scope is provided because it is deployed as a JVM extension
  201. as described in JCA documentation. -->
  202. <scope>provided</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>info.cukes</groupId>
  206. <artifactId>cucumber-junit</artifactId>
  207. <version>${info.cukes.version}</version>
  208. <scope>test</scope>
  209. </dependency>
  210. <dependency>
  211. <groupId>info.cukes</groupId>
  212. <artifactId>cucumber-java</artifactId>
  213. <version>${info.cukes.version}</version>
  214. <scope>test</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.google.code.findbugs</groupId>
  218. <artifactId>jsr305</artifactId>
  219. <version>${jsr305.version}</version>
  220. </dependency>
  221. </dependencies>
  222. </dependencyManagement>
  223. <modules>
  224. <module>ov-commons-lib-persistence</module>
  225. <module>ov-commons-lib</module>
  226. <module>ov-commons-sign</module>
  227. <module>ov-commons-beans</module>
  228. <module>ov-commons-dto</module>
  229. <module>ov-commons-correctness</module>
  230. <module>ov-commons-infrastructure</module>
  231. <module>ov-commons-logging</module>
  232. <module>libs-config</module>
  233. <module>ov-commons-integration-tests</module>
  234. <module>ov-commons-messaging</module>
  235. <module>ov-commons-errormanagement</module>
  236. </modules>
  237. </project>