pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.scytl.products.ov.channel.cc</groupId>
  7. <artifactId>control-components</artifactId>
  8. <version>2.1.7</version>
  9. </parent>
  10. <artifactId>control-components-test</artifactId>
  11. <name>Control Components Tests</name>
  12. <description>Integration tests of the Control Components</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.scytl.products.ov.channel.cc</groupId>
  16. <artifactId>choice-codes-generation-service</artifactId>
  17. <version>${project.version}</version>
  18. <classifier>original</classifier>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.scytl.products.ov.channel.cc</groupId>
  23. <artifactId>choice-codes-verification-service</artifactId>
  24. <version>${project.version}</version>
  25. <classifier>original</classifier>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mockito</groupId>
  35. <artifactId>mockito-core</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.bouncycastle</groupId>
  45. <artifactId>bcprov-jdk15on</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.h2database</groupId>
  50. <artifactId>h2</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>