pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>cryptolib</artifactId>
  7. <groupId>com.scytl.cryptolib</groupId>
  8. <version>2.1.5-4</version>
  9. </parent>
  10. <artifactId>cryptolib-commons</artifactId>
  11. <name>Commons</name>
  12. <description>Used for sharing common functionality and structures</description>
  13. <dependencies>
  14. <dependency>
  15. <artifactId>cryptolib-api-commons</artifactId>
  16. <groupId>com.scytl.cryptolib</groupId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <artifactId>cryptolib-default-policies</artifactId>
  21. <groupId>com.scytl.cryptolib</groupId>
  22. <version>${project.version}</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <artifactId>cryptolib-test-tools</artifactId>
  27. <groupId>com.scytl.cryptolib</groupId>
  28. <version>${project.version}</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-pool2</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.core</groupId>
  37. <artifactId>jackson-databind</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mockito</groupId>
  41. <artifactId>mockito-core</artifactId>
  42. </dependency>
  43. </dependencies>
  44. </project>