pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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-webapp</artifactId>
  9. <packaging>war</packaging>
  10. <name>Secure Data Manager - Tallying - Webapp</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.products.ov</groupId>
  18. <artifactId>tallying-engine</artifactId>
  19. <version>${project.version}</version>
  20. <exclusions>
  21. <exclusion>
  22. <artifactId>libs-config</artifactId>
  23. <groupId>com.scytl.products.ov.channel.commons</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.scytl.products.ov.sdm</groupId>
  29. <artifactId>ov-secure-data-manager-libs-config</artifactId>
  30. <version>${project.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-context</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-webmvc</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  47. <artifactId>jackson-jaxrs-json-provider</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. <version>3.1.0</version>
  53. <scope>provided</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>javax.ws.rs</groupId>
  57. <artifactId>javax.ws.rs-api</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>info.cukes</groupId>
  62. <artifactId>cucumber-java</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>info.cukes</groupId>
  67. <artifactId>cucumber-junit</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>info.cukes</groupId>
  72. <artifactId>cucumber-spring</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.mockito</groupId>
  77. <artifactId>mockito-core</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.bouncycastle</groupId>
  82. <artifactId>bcprov-jdk15on</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.hamcrest</groupId>
  87. <artifactId>hamcrest-core</artifactId>
  88. <scope>test</scope>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <finalName>tallying</finalName>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-war-plugin</artifactId>
  97. <configuration>
  98. <failOnMissingWebXml>false</failOnMissingWebXml>
  99. </configuration>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.tomcat.maven</groupId>
  103. <artifactId>tomcat7-maven-plugin</artifactId>
  104. <version>2.2</version>
  105. <configuration>
  106. <path>/${project.build.finalName}</path>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. <resources>
  111. <resource>
  112. <directory>src/main/resources</directory>
  113. <filtering>true</filtering>
  114. <includes>
  115. <include>**/version.txt</include>
  116. </includes>
  117. </resource>
  118. <resource>
  119. <directory>src/main/resources</directory>
  120. <filtering>false</filtering>
  121. <excludes>
  122. <exclude>**/version.txt</exclude>
  123. </excludes>
  124. </resource>
  125. </resources>
  126. </build>
  127. </project>