pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.va.shWasher</groupId>
  8. <artifactId>sw-common</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>sw-common-encrypt</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>数据加解密模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.va.shWasher</groupId>
  17. <artifactId>sw-common-core</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.bouncycastle</groupId>
  21. <artifactId>bcprov-jdk15to18</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.hutool</groupId>
  25. <artifactId>hutool-crypto</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-webmvc</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  34. <optional>true</optional>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.mybatis</groupId>
  38. <artifactId>mybatis-spring</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. </dependencies>
  43. </project>