2
0

pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>ov-commons</artifactId>
  5. <groupId>com.scytl.products.ov.channel.commons</groupId>
  6. <version>2.1.7</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>ov-commons-integration-tests</artifactId>
  10. <dependencyManagement>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.jboss.arquillian</groupId>
  14. <artifactId>arquillian-bom</artifactId>
  15. <version>${arquillian.version}</version>
  16. <scope>import</scope>
  17. <type>pom</type>
  18. </dependency>
  19. </dependencies>
  20. </dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.jboss.arquillian.junit</groupId>
  24. <artifactId>arquillian-junit-container</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.glassfish.jersey.test-framework.providers</groupId>
  29. <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
  30. <version>${jersey-test-framework-core.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.openejb</groupId>
  34. <artifactId>arquillian-tomee-embedded</artifactId>
  35. <version>${arquillian-tomee.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.openejb</groupId>
  39. <artifactId>arquillian-tomee-common</artifactId>
  40. <version>${arquillian-tomee.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.openejb</groupId>
  45. <artifactId>tomee-jaxrs</artifactId>
  46. <version>${arquillian-tomee.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.jboss.shrinkwrap.resolver</groupId>
  50. <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.eu.ingwar.tools</groupId>
  54. <artifactId>arquillian-suite-extension</artifactId>
  55. <version>${arquillian-suite.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.jboss.arquillian.extension</groupId>
  59. <artifactId>arquillian-rest-client-api</artifactId>
  60. <version>${arquillian-extension.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.jboss.arquillian.extension</groupId>
  64. <artifactId>arquillian-rest-client-impl-3x</artifactId>
  65. <version>${arquillian-extension.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.jboss.resteasy</groupId>
  69. <artifactId>resteasy-jackson2-provider</artifactId>
  70. <version>${arquillian-resteasy-jackson2-provider.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>junit</groupId>
  74. <artifactId>junit</artifactId>
  75. <version>${junit.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.h2database</groupId>
  79. <artifactId>h2</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.scytl.math</groupId>
  83. <artifactId>scytl-math</artifactId>
  84. <version>${scytl-math.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.jboss.arquillian.protocol</groupId>
  88. <artifactId>arquillian-protocol-servlet</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. </dependencies>
  92. <properties>
  93. <arquillian-tomee.version>1.7.2</arquillian-tomee.version>
  94. <arquillian.version>1.1.9.Final</arquillian.version>
  95. <arquillian-suite.version>1.1.2</arquillian-suite.version>
  96. <arquillian-extension.version>1.0.0.Alpha1</arquillian-extension.version>
  97. <arquillian-resteasy.version>3.1.0.Final</arquillian-resteasy.version>
  98. <arquillian-resteasy-jackson2-provider.version>3.0.14.Final</arquillian-resteasy-jackson2-provider.version>
  99. <h2database.version>1.4.193</h2database.version>
  100. </properties>
  101. </project>