pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.sckw</groupId>
  8. <artifactId>sckw-common</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>sckw-common-excel</artifactId>
  12. <version>1.0.0</version>
  13. <description>核心模块</description>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <easyexcel.version>3.0.5</easyexcel.version>
  20. <commons-io.version>2.11.0</commons-io.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.sckw</groupId>
  25. <artifactId>sckw-common-core</artifactId>
  26. <version>1.0.0</version>
  27. </dependency>
  28. <!--alibaba EasyExcel导入导出-->
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>easyexcel</artifactId>
  32. <version>${easyexcel.version}</version>
  33. </dependency>
  34. <!--cglib-->
  35. <dependency>
  36. <groupId>cglib</groupId>
  37. <artifactId>cglib</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.ow2.asm</groupId>
  41. <artifactId>asm</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. <version>3.3.0</version>
  45. </dependency>
  46. <!-- validation -->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-validation</artifactId>
  50. </dependency>
  51. <!-- <dependency>-->
  52. <!-- <groupId>org.springframework</groupId>-->
  53. <!-- <artifactId>spring-core</artifactId>-->
  54. <!-- <version>6.0.9</version>-->
  55. <!-- </dependency>-->
  56. <dependency>
  57. <groupId>jakarta.validation</groupId>
  58. <artifactId>jakarta.validation-api</artifactId>
  59. <!-- <version>2.0.1</version>-->
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-web</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.tomcat.embed</groupId>
  67. <artifactId>tomcat-embed-core</artifactId>
  68. <version>10.1.7</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-io</groupId>
  72. <artifactId>commons-io</artifactId>
  73. <version>${commons-io.version}</version>
  74. </dependency>
  75. </dependencies>
  76. </project>