pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>cn.hutool</groupId>
  9. <artifactId>hutool-parent</artifactId>
  10. <version>5.4.4-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>hutool-crypto</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool 加密解密</description>
  15. <properties>
  16. <!-- versions -->
  17. <bouncycastle.version>1.66</bouncycastle.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.hutool</groupId>
  22. <artifactId>hutool-core</artifactId>
  23. <version>${project.parent.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.bouncycastle</groupId>
  27. <artifactId>bcprov-jdk15to18</artifactId>
  28. <version>${bouncycastle.version}</version>
  29. <scope>compile</scope>
  30. <optional>true</optional>
  31. </dependency>
  32. </dependencies>
  33. </project>