pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <artifactId>cryptolib</artifactId>
  6. <groupId>com.scytl.cryptolib</groupId>
  7. <version>2.1.5-4</version>
  8. </parent>
  9. <artifactId>cryptolib-mathematical</artifactId>
  10. <name>Mathematical</name>
  11. <description>Common mathematical algorithms</description>
  12. <dependencies>
  13. <dependency>
  14. <artifactId>cryptolib-commons</artifactId>
  15. <groupId>com.scytl.cryptolib</groupId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <artifactId>cryptolib-primitives</artifactId>
  20. <groupId>com.scytl.cryptolib</groupId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <artifactId>cryptolib-test-tools</artifactId>
  25. <groupId>com.scytl.cryptolib</groupId>
  26. <version>${project.version}</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.scytl.math</groupId>
  31. <artifactId>scytl-math</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.bouncycastle</groupId>
  35. <artifactId>bcpkix-jdk15on</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson.core</groupId>
  40. <artifactId>jackson-databind</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-jar-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <goals>
  51. <goal>test-jar</goal>
  52. </goals>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>