pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <parent>
  6. <artifactId>js-security</artifactId>
  7. <groupId>com.rongwei</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>security-common</artifactId>
  12. <dependencies>
  13. <!-- 使用Gson -->
  14. <dependency>
  15. <groupId>com.google.code.gson</groupId>
  16. <artifactId>gson</artifactId>
  17. <version>2.8.9</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.rongwei</groupId>
  21. <artifactId>security-entity</artifactId>
  22. <version>1.0-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-openfeign</artifactId>
  27. <version>2.1.0.RELEASE</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-freemarker</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>easyexcel</artifactId>
  36. <version>3.3.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.afterturn</groupId>
  40. <artifactId>easypoi-base</artifactId>
  41. <version>4.4.0</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.hutool</groupId>
  46. <artifactId>hutool-all</artifactId>
  47. <version>5.8.17</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. </dependencies>
  51. </project>