pom.xml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <artifactId>cryptolib</artifactId>
  5. <groupId>com.scytl.cryptolib</groupId>
  6. <version>2.1.5-4</version>
  7. </parent>
  8. <artifactId>cryptolib-stores</artifactId>
  9. <name>Stores</name>
  10. <description>Provides operations for stores</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.scytl.cryptolib</groupId>
  14. <artifactId>cryptolib-primitives</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.scytl.cryptolib</groupId>
  19. <artifactId>cryptolib-commons</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.scytl.cryptolib</groupId>
  24. <artifactId>cryptolib-api-stores</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.scytl.cryptolib</groupId>
  29. <artifactId>cryptolib-asymmetric</artifactId>
  30. <version>${project.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.scytl.cryptolib</groupId>
  34. <artifactId>cryptolib-symmetric</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.scytl.cryptolib</groupId>
  39. <artifactId>cryptolib-certificates</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <artifactId>cryptolib-default-policies</artifactId>
  44. <groupId>com.scytl.cryptolib</groupId>
  45. <version>${project.version}</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <artifactId>cryptolib-test-tools</artifactId>
  50. <groupId>com.scytl.cryptolib</groupId>
  51. <version>${project.version}</version>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <artifactId>cryptolib-primitives</artifactId>
  56. <groupId>com.scytl.cryptolib</groupId>
  57. <version>${project.version}</version>
  58. <type>test-jar</type>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <artifactId>cryptolib-asymmetric</artifactId>
  63. <groupId>com.scytl.cryptolib</groupId>
  64. <version>${project.version}</version>
  65. <type>test-jar</type>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <artifactId>cryptolib-certificates</artifactId>
  70. <groupId>com.scytl.cryptolib</groupId>
  71. <version>${project.version}</version>
  72. <type>test-jar</type>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <artifactId>cryptolib-default-policies</artifactId>
  77. <groupId>com.scytl.cryptolib</groupId>
  78. <version>${project.version}</version>
  79. <type>test-jar</type>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.bouncycastle</groupId>
  84. <artifactId>bcprov-jdk15on</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-failsafe-plugin</artifactId>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>