pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?xml version="1.0" encoding="UTF-8"?>
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.scytl.products.ov.channel</groupId>
  6. <artifactId>ov-channel</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.ag</groupId>
  10. <artifactId>api-gateway</artifactId>
  11. <packaging>pom</packaging>
  12. <name>Online Voting API Gateway</name>
  13. <properties>
  14. <esapi.version>2.1.0.1</esapi.version>
  15. <beanshell.version>2.0b6</beanshell.version>
  16. <jsoup.version>1.11.2</jsoup.version>
  17. <xalan.version>2.7.2</xalan.version>
  18. <commons-beanutils.version>1.9.2</commons-beanutils.version>
  19. <commons-fileupload.version>1.3.2</commons-fileupload.version>
  20. <org.apache.xmlgraphics.version>1.10</org.apache.xmlgraphics.version>
  21. <org.owasp.antisamy.version>1.5.7</org.owasp.antisamy.version>
  22. <owasp-json-sanitizer.version>1.0</owasp-json-sanitizer.version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  28. <artifactId>ov-commons-lib</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.scytl.products.ov.channel.commons</groupId>
  33. <artifactId>ov-commons-beans</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.scytl.products.ov.channel.commons</groupId>
  38. <artifactId>ov-commons-infrastructure</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. </dependencies>
  42. </dependencyManagement>
  43. <dependencies>
  44. <!-- JavaEE -->
  45. <dependency>
  46. <groupId>org.apache.openejb</groupId>
  47. <artifactId>javaee-api</artifactId>
  48. <scope>provided</scope>
  49. </dependency>
  50. <!-- Bouncy Castle -->
  51. <dependency>
  52. <groupId>org.bouncycastle</groupId>
  53. <artifactId>bcprov-jdk15on</artifactId>
  54. <scope>provided</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.bouncycastle</groupId>
  58. <artifactId>bcpkix-jdk15on</artifactId>
  59. </dependency>
  60. <!-- Testing -->
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <version>${junit.version}</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mockito</groupId>
  69. <artifactId>mockito-core</artifactId>
  70. <version>${mockito.version}</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <!-- jackson for json processing (this is used for annotations in DTOs) -->
  74. <dependency>
  75. <groupId>com.fasterxml.jackson.core</groupId>
  76. <artifactId>jackson-annotations</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.fasterxml.jackson.core</groupId>
  80. <artifactId>jackson-databind</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.fasterxml.jackson.jaxrs</groupId>
  84. <artifactId>jackson-jaxrs-json-provider</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.owasp.antisamy</groupId>
  88. <artifactId>antisamy</artifactId>
  89. <version>${org.owasp.antisamy.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.xmlgraphics</groupId>
  93. <artifactId>batik-css</artifactId>
  94. <version>${org.apache.xmlgraphics.version}</version>
  95. </dependency>
  96. <!-- Validation -->
  97. <dependency>
  98. <groupId>org.owasp.esapi</groupId>
  99. <artifactId>esapi</artifactId>
  100. <version>${esapi.version}</version>
  101. <exclusions>
  102. <exclusion>
  103. <groupId>commons-io</groupId>
  104. <artifactId>commons-io</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>xalan</groupId>
  108. <artifactId>xalan</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>commons-beanutils</groupId>
  112. <artifactId>commons-beanutils-core</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>commons-fileupload</groupId>
  116. <artifactId>commons-fileupload</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>org.owasp.antisamy</groupId>
  120. <artifactId>antisamy</artifactId>
  121. </exclusion>
  122. <exclusion>
  123. <groupId>org.apache.xmlgraphics</groupId>
  124. <artifactId>batik-css</artifactId>
  125. </exclusion>
  126. <exclusion>
  127. <groupId>org.beanshell</groupId>
  128. <artifactId>bsh-core</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.beanshell</groupId>
  134. <artifactId>bsh-core</artifactId>
  135. <version>${beanshell.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>xalan</groupId>
  139. <artifactId>xalan</artifactId>
  140. <version>${xalan.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>commons-beanutils</groupId>
  144. <artifactId>commons-beanutils</artifactId>
  145. <version>${commons-beanutils.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.jsoup</groupId>
  149. <artifactId>jsoup</artifactId>
  150. <version>${jsoup.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.mikesamuel</groupId>
  154. <artifactId>json-sanitizer</artifactId>
  155. <version>${owasp-json-sanitizer.version}</version>
  156. </dependency>
  157. </dependencies>
  158. <modules>
  159. <module>api-gateway-services</module>
  160. <module>ag-ws-rest</module>
  161. <module>assembly</module>
  162. </modules>
  163. </project>