pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.scytl.products.ov</groupId>
  5. <artifactId>tallying</artifactId>
  6. <version>2.1.6</version>
  7. </parent>
  8. <artifactId>tallying-engine</artifactId>
  9. <name>Secure Data Manager - Tallying - Engine</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.scytl.products.ov</groupId>
  16. <artifactId>config-commons</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.scytl.products.ov.sdm</groupId>
  21. <artifactId>ov-secure-data-manager-libs-config</artifactId>
  22. <version>${project.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.googlecode.jcsv</groupId>
  26. <artifactId>jcsv</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-context</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.scytl.products.ov.channel.commons</groupId>
  34. <artifactId>ov-commons-sign</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  38. <artifactId>ov-commons-lib</artifactId>
  39. <version>${ov-channel.version}</version>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  43. <artifactId>ov-commons-lib-persistence</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <!-- JavaEE -->
  48. <dependency>
  49. <groupId>org.apache.openejb</groupId>
  50. <artifactId>javaee-api</artifactId>
  51. <version>${javaee-api.version}</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.glassfish</groupId>
  56. <artifactId>javax.json</artifactId>
  57. <version>${javax.json.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.bouncycastle</groupId>
  61. <artifactId>bcprov-jdk15on</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <resources>
  67. <resource>
  68. <directory>src/main/resources</directory>
  69. <filtering>true</filtering>
  70. <includes>
  71. <include>**/version.txt</include>
  72. </includes>
  73. </resource>
  74. <resource>
  75. <directory>src/main/resources</directory>
  76. <filtering>false</filtering>
  77. <excludes>
  78. <exclude>**/version.txt</exclude>
  79. </excludes>
  80. </resource>
  81. </resources>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-failsafe-plugin</artifactId>
  86. <configuration>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-surefire-plugin</artifactId>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>