pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.inspur</groupId>
  7. <artifactId>smsb-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>smsb-common-encrypt</artifactId>
  12. <description>
  13. smsb-common-encrypt 数据加解密模块
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.inspur</groupId>
  18. <artifactId>smsb-common-core</artifactId>
  19. <version>${revision}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.bouncycastle</groupId>
  23. <artifactId>bcprov-jdk15to18</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.hutool</groupId>
  27. <artifactId>hutool-crypto</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-webmvc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-pool2</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.xml.bind</groupId>
  39. <artifactId>jaxb-api</artifactId>
  40. <version>2.3.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  45. <optional>true</optional>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>org.mybatis</groupId>
  49. <artifactId>mybatis-spring</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. </dependencies>
  54. </project>