pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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.au</groupId>
  10. <artifactId>authentication</artifactId>
  11. <packaging>pom</packaging>
  12. <name>Online Voting Authentication</name>
  13. <properties>
  14. <org.apache.geronimo.specs.version>1.1</org.apache.geronimo.specs.version>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.scytl.products.ov.channel.commons</groupId>
  20. <artifactId>ov-commons-logging</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.scytl.products.ov.channel.commons</groupId>
  25. <artifactId>ov-commons-sign</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  30. <artifactId>ov-commons-lib-persistence</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.scytl.products.ov.channel.commons</groupId>
  35. <artifactId>ov-commons-beans</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.scytl.products.ov.channel.commons</groupId>
  40. <artifactId>ov-commons-infrastructure</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  45. <artifactId>ov-commons-lib-persistence</artifactId>
  46. <version>${project.version}</version>
  47. <type>test-jar</type>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  52. <artifactId>ov-commons-lib</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  57. <artifactId>ov-commons-lib</artifactId>
  58. <scope>test</scope>
  59. <type>test-jar</type>
  60. <version>${project.version}</version>
  61. </dependency>
  62. </dependencies>
  63. </dependencyManagement>
  64. <dependencies>
  65. <dependency>
  66. <groupId>org.apache.openejb</groupId>
  67. <artifactId>javaee-api</artifactId>
  68. <scope>provided</scope>
  69. </dependency>
  70. <!-- Bouncy Castle -->
  71. <dependency>
  72. <groupId>org.bouncycastle</groupId>
  73. <artifactId>bcprov-jdk15on</artifactId>
  74. <scope>provided</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.bouncycastle</groupId>
  78. <artifactId>bcpkix-jdk15on</artifactId>
  79. </dependency>
  80. <!-- Logging -->
  81. <dependency>
  82. <groupId>org.slf4j</groupId>
  83. <artifactId>slf4j-api</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.scytl.products.oscore</groupId>
  87. <artifactId>logging-core</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.scytl.products.ov.channel.commons</groupId>
  91. <artifactId>libs-config</artifactId>
  92. <version>${project.version}</version>
  93. </dependency>
  94. <!-- Testing -->
  95. <dependency>
  96. <groupId>junit</groupId>
  97. <artifactId>junit</artifactId>
  98. <version>${junit.version}</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.mockito</groupId>
  103. <artifactId>mockito-core</artifactId>
  104. <version>${mockito.version}</version>
  105. <scope>test</scope>
  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.core</groupId>
  114. <artifactId>jackson-databind</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  118. <artifactId>jackson-jaxrs-json-provider</artifactId>
  119. </dependency>
  120. </dependencies>
  121. <modules>
  122. <module>authentication-services</module>
  123. <module>au-ws-rest</module>
  124. <module>assembly</module>
  125. </modules>
  126. </project>