pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <parent>
  4. <artifactId>ov-commons</artifactId>
  5. <groupId>com.scytl.products.ov.channel.commons</groupId>
  6. <version>2.1.7</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>ov-commons-infrastructure</artifactId>
  10. <name>Online Voting - Commons - Infrastructure</name>
  11. <properties>
  12. <ov.keystore.version>1.3.0</ov.keystore.version>
  13. <spring.version>4.2.4.RELEASE</spring.version>
  14. </properties>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-jar-plugin</artifactId>
  20. <version>2.6</version>
  21. <executions>
  22. <execution>
  23. <goals>
  24. <goal>test-jar</goal>
  25. </goals>
  26. </execution>
  27. </executions>
  28. </plugin>
  29. </plugins>
  30. </build>
  31. <dependencies>
  32. <dependency>
  33. <groupId>com.scytl.products.ov.channel.commons</groupId>
  34. <artifactId>ov-commons-beans</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.scytl.products.ov.channel.commons</groupId>
  39. <artifactId>ov-commons-sign</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <!-- CSV PARSER -->
  43. <dependency>
  44. <groupId>com.opencsv</groupId>
  45. <artifactId>opencsv</artifactId>
  46. <version>${opencsv.version}</version>
  47. </dependency>
  48. <!-- Keystore -->
  49. <dependency>
  50. <groupId>com.scytl.products.ov.keystore</groupId>
  51. <artifactId>ov-keystore</artifactId>
  52. <version>${ov.keystore.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpclient</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.squareup.retrofit2</groupId>
  60. <artifactId>adapter-rxjava</artifactId>
  61. <version>${retrofit.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.squareup.retrofit2</groupId>
  65. <artifactId>converter-gson</artifactId>
  66. <version>${retrofit.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.squareup.okhttp3</groupId>
  70. <artifactId>okhttp</artifactId>
  71. <version>${okhttp.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.squareup.okhttp3</groupId>
  75. <artifactId>logging-interceptor</artifactId>
  76. <version>${okhttp.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.slf4j</groupId>
  80. <artifactId>slf4j-api</artifactId>
  81. </dependency>
  82. <!-- Bouncy Castle -->
  83. <dependency>
  84. <groupId>org.bouncycastle</groupId>
  85. <artifactId>bcprov-jdk15on</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-io</groupId>
  90. <artifactId>commons-io</artifactId>
  91. </dependency>
  92. <!-- TEST dependencies -->
  93. <dependency>
  94. <groupId>com.scytl.products.ov.keystore</groupId>
  95. <artifactId>ov-keystore</artifactId>
  96. <version>${ov.keystore.version}</version>
  97. <type>test-jar</type>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.glassfish.jersey.containers</groupId>
  102. <artifactId>jersey-container-servlet</artifactId>
  103. <version>2.16</version>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.glassfish.jersey.test-framework</groupId>
  108. <artifactId>jersey-test-framework-core</artifactId>
  109. <version>2.16</version>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.glassfish.jersey.test-framework.providers</groupId>
  114. <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
  115. <version>2.16</version>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.glassfish.jersey.media</groupId>
  120. <artifactId>jersey-media-json-jackson</artifactId>
  121. <version>2.16</version>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.slf4j</groupId>
  126. <artifactId>slf4j-simple</artifactId>
  127. <version>${slf4j-api.version}</version>
  128. <scope>test</scope>
  129. </dependency>
  130. </dependencies>
  131. </project>