pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.scytl.products.ov.sdm</groupId>
  5. <artifactId>ov-secure-data-manager</artifactId>
  6. <version>2.1.6</version>
  7. </parent>
  8. <artifactId>tallying</artifactId>
  9. <groupId>com.scytl.products.ov</groupId>
  10. <packaging>pom</packaging>
  11. <name>Secure Data Manager Tallying</name>
  12. <description>
  13. Tallying modules
  14. </description>
  15. <properties>
  16. <skip.jacoco>false</skip.jacoco>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <javax.ws.rs.version>2.0</javax.ws.rs.version>
  19. </properties>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.fasterxml.jackson.core</groupId>
  24. <artifactId>jackson-databind</artifactId>
  25. <version>${jackson.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  29. <artifactId>jackson-jaxrs-json-provider</artifactId>
  30. <version>${jackson.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-context</artifactId>
  35. <version>${spring.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-tx</artifactId>
  40. <version>${spring.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-webmvc</artifactId>
  45. <version>${spring.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-test</artifactId>
  50. <version>${spring.version}</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.googlecode.jcsv</groupId>
  55. <artifactId>jcsv</artifactId>
  56. <version>1.4.0</version>
  57. </dependency>
  58. <!-- ov-commons dependencies-->
  59. <dependency>
  60. <groupId>com.scytl.products.ov.channel.commons</groupId>
  61. <artifactId>ov-commons-sign</artifactId>
  62. <version>${ov-channel.version}</version>
  63. </dependency>
  64. <!-- Logging -->
  65. <dependency>
  66. <groupId>org.slf4j</groupId>
  67. <artifactId>slf4j-api</artifactId>
  68. <version>${slf4j-api.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.scytl.products.oscore</groupId>
  72. <artifactId>logging-core</artifactId>
  73. <version>${logging.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.bouncycastle</groupId>
  77. <artifactId>bcprov-jdk15on</artifactId>
  78. <version>${bouncycastle.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.bouncycastle</groupId>
  82. <artifactId>bcpkix-jdk15on</artifactId>
  83. <version>${bouncycastle.version}</version>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>org.bouncycastle</groupId>
  87. <artifactId>bcprov-jdk15on</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.bouncycastle</groupId>
  93. <artifactId>bcmail-jdk15on</artifactId>
  94. <version>${bouncycastle.version}</version>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>org.bouncycastle</groupId>
  98. <artifactId>bcprov-jdk15on</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.jmockit</groupId>
  104. <artifactId>jmockit</artifactId>
  105. <version>1.17</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>junit</groupId>
  110. <artifactId>junit</artifactId>
  111. <version>4.12</version>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>javax.ws.rs</groupId>
  116. <artifactId>javax.ws.rs-api</artifactId>
  117. <version>${javax.ws.rs.version}</version>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>info.cukes</groupId>
  122. <artifactId>cucumber-java</artifactId>
  123. <version>${info.cukes.version}</version>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>info.cukes</groupId>
  128. <artifactId>cucumber-junit</artifactId>
  129. <version>${info.cukes.version}</version>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>info.cukes</groupId>
  134. <artifactId>cucumber-spring</artifactId>
  135. <version>${info.cukes.version}</version>
  136. <scope>test</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.mockito</groupId>
  140. <artifactId>mockito-core</artifactId>
  141. <version>${mockito.version}</version>
  142. <scope>test</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.hamcrest</groupId>
  146. <artifactId>hamcrest-core</artifactId>
  147. <version>1.3</version>
  148. <scope>test</scope>
  149. </dependency>
  150. </dependencies>
  151. </dependencyManagement>
  152. <dependencies>
  153. <dependency>
  154. <groupId>org.slf4j</groupId>
  155. <artifactId>slf4j-api</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.scytl.products.oscore</groupId>
  159. <artifactId>logging-core</artifactId>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.jmockit</groupId>
  163. <artifactId>jmockit</artifactId>
  164. <scope>test</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>junit</groupId>
  168. <artifactId>junit</artifactId>
  169. <scope>test</scope>
  170. </dependency>
  171. </dependencies>
  172. <modules>
  173. <module>tallying-engine</module>
  174. <module>tallying-webapp</module>
  175. <module>assembly</module>
  176. </modules>
  177. <build>
  178. <pluginManagement>
  179. <plugins>
  180. <plugin>
  181. <groupId>org.codehaus.mojo</groupId>
  182. <artifactId>build-helper-maven-plugin</artifactId>
  183. <version>1.9.1</version>
  184. </plugin>
  185. <plugin>
  186. <groupId>org.apache.maven.plugins</groupId>
  187. <artifactId>maven-site-plugin</artifactId>
  188. <version>3.4</version>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-release-plugin</artifactId>
  193. <version>2.5</version>
  194. <configuration>
  195. <preparationGoals>clean replacer:replace verify</preparationGoals>
  196. </configuration>
  197. </plugin>
  198. <plugin>
  199. <groupId>org.apache.maven.plugins</groupId>
  200. <artifactId>maven-failsafe-plugin</artifactId>
  201. <version>2.17</version>
  202. </plugin>
  203. <plugin>
  204. <groupId>org.apache.maven.plugins</groupId>
  205. <artifactId>maven-surefire-plugin</artifactId>
  206. <version>2.18.1</version>
  207. <configuration>
  208. <includes>
  209. <include>**/*.java</include>
  210. </includes>
  211. </configuration>
  212. </plugin>
  213. <plugin>
  214. <groupId>org.apache.maven.plugins</groupId>
  215. <artifactId>maven-shade-plugin</artifactId>
  216. <version>2.2</version>
  217. </plugin>
  218. </plugins>
  219. </pluginManagement>
  220. </build>
  221. </project>