pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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-dto</artifactId>
  9. <packaging>jar</packaging>
  10. <name>Online Voting - Commons - DTO</name>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.scytl.cryptolib</groupId>
  17. <artifactId>cryptolib-api-elgamal</artifactId>
  18. <version>${cryptolib.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.scytl.cryptolib</groupId>
  22. <artifactId>cryptolib-asymmetric</artifactId>
  23. <version>${cryptolib.version}</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.scytl.cryptolib</groupId>
  28. <artifactId>cryptolib-certificates</artifactId>
  29. <version>${cryptolib.version}</version>
  30. <scope>test</scope>
  31. </dependency>
  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>libs-config</artifactId>
  40. <version>${project.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.bouncycastle</groupId>
  45. <artifactId>bcprov-jdk15on</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.msgpack</groupId>
  50. <artifactId>msgpack-core</artifactId>
  51. <version>0.8.16</version>
  52. <type>jar</type>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <!-- Test classes in separate JAR for reuse in other modules -->
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-jar-plugin</artifactId>
  61. <version>2.6</version>
  62. <executions>
  63. <execution>
  64. <goals>
  65. <goal>test-jar</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>