pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.scytl.mixing</groupId>
  7. <artifactId>mixing</artifactId>
  8. <version>0.3.2</version>
  9. </parent>
  10. <artifactId>mixing-commons</artifactId>
  11. <name>Online Voting - Mixing - Commons</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <!-- CryptoLib dependencies -->
  17. <dependency>
  18. <artifactId>cryptolib-elgamal</artifactId>
  19. <groupId>com.scytl.cryptolib</groupId>
  20. </dependency>
  21. <!-- Logging -->
  22. <dependency>
  23. <groupId>com.scytl.products.oscore</groupId>
  24. <artifactId>logging-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.slf4j</groupId>
  28. <artifactId>slf4j-api</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.commons</groupId>
  32. <artifactId>commons-lang3</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-io</groupId>
  36. <artifactId>commons-io</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.googlecode.jcsv</groupId>
  40. <artifactId>jcsv</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.fasterxml.jackson.core</groupId>
  44. <artifactId>jackson-databind</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.core</groupId>
  48. <artifactId>jackson-core</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.fasterxml.jackson.core</groupId>
  52. <artifactId>jackson-annotations</artifactId>
  53. </dependency>
  54. <!-- testing dependencies -->
  55. <dependency>
  56. <groupId>org.hamcrest</groupId>
  57. <artifactId>hamcrest-all</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.scytl.math</groupId>
  62. <artifactId>scytl-math</artifactId>
  63. <scope>provided</scope>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <resources>
  68. <resource>
  69. <directory>src/main/resources</directory>
  70. <filtering>true</filtering>
  71. <includes>
  72. <include>**/version.txt</include>
  73. </includes>
  74. </resource>
  75. <resource>
  76. <directory>src/main/resources</directory>
  77. <filtering>false</filtering>
  78. <excludes>
  79. <exclude>**/version.txt</exclude>
  80. </excludes>
  81. </resource>
  82. </resources>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-jar-plugin</artifactId>
  87. <version>2.6</version>
  88. <executions>
  89. <execution>
  90. <goals>
  91. <goal>test-jar</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. <plugin>
  97. <groupId>org.apache.maven.plugins</groupId>
  98. <artifactId>maven-surefire-plugin</artifactId>
  99. <configuration>
  100. <forkMode>once</forkMode>
  101. <argLine>-Xms512m -Xmx1024m</argLine>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>