pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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-elgamal</artifactId>
  10. <name>ElGamal</name>
  11. <description>ElGamal cryptography</description>
  12. <dependencies>
  13. <dependency>
  14. <artifactId>cryptolib-mathematical</artifactId>
  15. <groupId>com.scytl.cryptolib</groupId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <artifactId>cryptolib-commons</artifactId>
  20. <groupId>com.scytl.cryptolib</groupId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <artifactId>cryptolib-api-elgamal</artifactId>
  25. <groupId>com.scytl.cryptolib</groupId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.scytl.math</groupId>
  30. <artifactId>scytl-math</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.bouncycastle</groupId>
  34. <artifactId>bcprov-jdk15on</artifactId>
  35. </dependency>
  36. <dependency>
  37. <artifactId>cryptolib-default-policies</artifactId>
  38. <groupId>com.scytl.cryptolib</groupId>
  39. <version>${project.version}</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <artifactId>cryptolib-test-tools</artifactId>
  44. <groupId>com.scytl.cryptolib</groupId>
  45. <version>${project.version}</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <artifactId>cryptolib-mathematical</artifactId>
  50. <groupId>com.scytl.cryptolib</groupId>
  51. <version>${project.version}</version>
  52. <type>test-jar</type>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <artifactId>cryptolib-primitives</artifactId>
  57. <groupId>com.scytl.cryptolib</groupId>
  58. <version>${project.version}</version>
  59. <type>test-jar</type>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <artifactId>cryptolib-default-policies</artifactId>
  64. <groupId>com.scytl.cryptolib</groupId>
  65. <version>${project.version}</version>
  66. <type>test-jar</type>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-jar-plugin</artifactId>
  75. <executions>
  76. <execution>
  77. <goals>
  78. <goal>test-jar</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>