2
0

pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. <parent>
  3. <artifactId>ov-commons</artifactId>
  4. <groupId>com.scytl.products.ov.channel.commons</groupId>
  5. <version>2.1.7</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>ov-commons-sign</artifactId>
  9. <packaging>jar</packaging>
  10. <name>Online Voting - Commons - Sign</name>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <jwt.version>0.9.0</jwt.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.fasterxml.jackson.core</groupId>
  18. <artifactId>jackson-databind</artifactId>
  19. </dependency>
  20. <dependency>
  21. <artifactId>cryptolib-asymmetric</artifactId>
  22. <groupId>com.scytl.cryptolib</groupId>
  23. <version>${cryptolib.version}</version>
  24. </dependency>
  25. <dependency>
  26. <artifactId>cryptolib-certificates</artifactId>
  27. <groupId>com.scytl.cryptolib</groupId>
  28. <version>${cryptolib.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.scytl.products.ov.channel.commons</groupId>
  32. <artifactId>libs-config</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.scytl.products.ov.channel.commons</groupId>
  37. <artifactId>ov-commons-beans</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.bouncycastle</groupId>
  42. <artifactId>bcprov-jdk15on</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-codec</groupId>
  46. <artifactId>commons-codec</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-io</groupId>
  50. <artifactId>commons-io</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.scytl.products.ov.channel.commons</groupId>
  54. <artifactId>ov-commons-dto</artifactId>
  55. <version>${project.version}</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <!--
  60. This dependency is declared as required by the CryptoLib but
  61. declared as 'provided', which is true in production, but it needs
  62. to be manually added for testing.
  63. -->
  64. <groupId>com.scytl.math</groupId>
  65. <artifactId>scytl-math</artifactId>
  66. <version>${scytl-math.version}</version>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <!-- Test classes in separate JAR for reuse in other modules -->
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-jar-plugin</artifactId>
  76. <version>2.6</version>
  77. <executions>
  78. <execution>
  79. <goals>
  80. <goal>test-jar</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. <profiles>
  88. <profile>
  89. <id>skipTestRun</id>
  90. <activation>
  91. <property>
  92. <name>skipTests</name>
  93. <value>!true</value>
  94. </property>
  95. </activation>
  96. <dependencies>
  97. <dependency>
  98. <groupId>com.scytl.products.ov.channel.commons</groupId>
  99. <artifactId>ov-commons-dto</artifactId>
  100. <version>${project.version}</version>
  101. <type>test-jar</type>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.scytl.cryptolib</groupId>
  106. <artifactId>cryptolib-certificates</artifactId>
  107. <version>${cryptolib.version}</version>
  108. <type>test-jar</type>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.scytl.cryptolib</groupId>
  113. <artifactId>cryptolib-asymmetric</artifactId>
  114. <version>${cryptolib.version}</version>
  115. <type>test-jar</type>
  116. <scope>test</scope>
  117. </dependency>
  118. </dependencies>
  119. </profile>
  120. </profiles>
  121. </project>