pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. <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.cr</groupId>
  10. <artifactId>certificate-registry</artifactId>
  11. <packaging>pom</packaging>
  12. <name>Online Voting Certificate Registry</name>
  13. <dependencyManagement>
  14. <dependencies>
  15. <!-- ONLINE VOTING DEPENDENCIES -->
  16. <dependency>
  17. <groupId>com.scytl.products.ov.channel.commons</groupId>
  18. <artifactId>ov-commons-logging</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  23. <artifactId>ov-commons-lib-persistence</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.scytl.products.ov.channel.commons</groupId>
  28. <artifactId>ov-commons-beans</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.scytl.products.ov.channel.commons</groupId>
  33. <artifactId>ov-commons-infrastructure</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <!-- CRYPTOLIB DEPENDENCIES -->
  37. <dependency>
  38. <artifactId>cryptolib-certificates</artifactId>
  39. <groupId>com.scytl.cryptolib</groupId>
  40. <version>${cryptolib.version}</version>
  41. </dependency>
  42. <dependency>
  43. <artifactId>cryptolib-asymmetric</artifactId>
  44. <groupId>com.scytl.cryptolib</groupId>
  45. <version>${cryptolib.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.scytl.math</groupId>
  49. <artifactId>scytl-math</artifactId>
  50. <version>${scytl-math.version}</version>
  51. </dependency>
  52. <!-- BOUNCY CASTLE DEPENDENCIES -->
  53. <dependency>
  54. <groupId>org.bouncycastle</groupId>
  55. <artifactId>bcprov-jdk15on</artifactId>
  56. <version>${bouncycastle.version}</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.bouncycastle</groupId>
  61. <artifactId>bcpkix-jdk15on</artifactId>
  62. <version>${bouncycastle.version}</version>
  63. </dependency>
  64. </dependencies>
  65. </dependencyManagement>
  66. <dependencies>
  67. <!-- JavaEE -->
  68. <dependency>
  69. <groupId>org.apache.openejb</groupId>
  70. <artifactId>javaee-api</artifactId>
  71. <scope>provided</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.scytl.products.ov.channel.commons</groupId>
  75. <artifactId>libs-config</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <!-- Logging -->
  79. <dependency>
  80. <groupId>org.slf4j</groupId>
  81. <artifactId>slf4j-api</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.scytl.products.oscore</groupId>
  85. <artifactId>logging-core</artifactId>
  86. </dependency>
  87. <!-- Testing -->
  88. <dependency>
  89. <groupId>junit</groupId>
  90. <artifactId>junit</artifactId>
  91. <version>${junit.version}</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.mockito</groupId>
  96. <artifactId>mockito-core</artifactId>
  97. <version>${mockito.version}</version>
  98. <scope>test</scope>
  99. </dependency>
  100. <!-- jackson for json processing (this is used for annotations in DTOs) -->
  101. <dependency>
  102. <groupId>com.fasterxml.jackson.core</groupId>
  103. <artifactId>jackson-annotations</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.fasterxml.jackson.core</groupId>
  107. <artifactId>jackson-databind</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  111. <artifactId>jackson-jaxrs-json-provider</artifactId>
  112. </dependency>
  113. </dependencies>
  114. <modules>
  115. <module>cr-ws-rest</module>
  116. <module>certificate-registry-services</module>
  117. <module>assembly</module>
  118. </modules>
  119. </project>