pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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" 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.mixing</groupId>
  6. <artifactId>mixing</artifactId>
  7. <version>0.3.2</version>
  8. </parent>
  9. <artifactId>mixing-prover</artifactId>
  10. <name>Online Voting - Mixing - Prover</name>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <!-- internal project dependencies-->
  16. <dependency>
  17. <groupId>com.scytl.mixing</groupId>
  18. <artifactId>mixing-commons</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.scytl.math</groupId>
  23. <artifactId>scytl-math</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. </dependencies>
  27. <profiles>
  28. <profile>
  29. <id>skipTestRun</id>
  30. <activation>
  31. <property>
  32. <name>skipTests</name>
  33. <value>!true</value>
  34. </property>
  35. </activation>
  36. <dependencies>
  37. <dependency>
  38. <groupId>com.scytl.mixing</groupId>
  39. <artifactId>mixing-commons</artifactId>
  40. <version>${project.version}</version>
  41. <type>test-jar</type>
  42. <scope>test</scope>
  43. </dependency>
  44. </dependencies>
  45. </profile>
  46. </profiles>
  47. <build>
  48. <resources>
  49. <resource>
  50. <directory>src/main/resources</directory>
  51. <filtering>true</filtering>
  52. <includes>
  53. <include>**/version.txt</include>
  54. </includes>
  55. </resource>
  56. <resource>
  57. <directory>src/main/resources</directory>
  58. <filtering>false</filtering>
  59. <excludes>
  60. <exclude>**/version.txt</exclude>
  61. </excludes>
  62. </resource>
  63. </resources>
  64. </build>
  65. </project>