pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <groupId>com.rongwei</groupId>
  7. <artifactId>zhsw_service</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zhsw-entity</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba</groupId>
  15. <artifactId>easyexcel</artifactId>
  16. <version>3.0.5</version> <!-- 确保使用最新版本 -->
  17. </dependency>
  18. <dependency>
  19. <groupId>com.rongwei</groupId>
  20. <artifactId>rw-common-config</artifactId>
  21. <version>1.1-SNAPSHOT</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>com.rongwei</groupId>
  25. <artifactId>rw-common-license</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.rongwei</groupId>
  31. <artifactId>rw-admin-common</artifactId>
  32. <version>1.1-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.rongwei</groupId>
  36. <artifactId>rw-common-utils</artifactId>
  37. <version>1.1-SNAPSHOT</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.checkerframework</groupId>
  41. <artifactId>checker-qual</artifactId>
  42. <version>3.12.0</version>
  43. <scope>compile</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>