pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <artifactId>sckw-common</artifactId>
  7. <groupId>com.sckw</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sckw-common-excel</artifactId>
  12. <description>excel导入导出</description>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.sckw</groupId>
  20. <artifactId>sckw-common-core</artifactId>
  21. </dependency>
  22. <!--alibaba EasyExcel导入导出-->
  23. <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>easyexcel</artifactId>
  26. </dependency>
  27. <!--cglib-->
  28. <dependency>
  29. <groupId>cglib</groupId>
  30. <artifactId>cglib</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.ow2.asm</groupId>
  34. <artifactId>asm</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-web</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-io</groupId>
  44. <artifactId>commons-io</artifactId>
  45. </dependency>
  46. </dependencies>
  47. </project>