pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <artifactId>springboot-poi-tl</artifactId>
  7. <parent>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-parent</artifactId>
  10. <version>2.3.6.RELEASE</version>
  11. </parent>
  12. <properties>
  13. <swagger.version>2.7.0</swagger.version>
  14. </properties>
  15. <dependencies>
  16. <!-- Spring Boot web依赖 -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.springfox</groupId>
  23. <artifactId>springfox-swagger2</artifactId>
  24. <version>${swagger.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>io.springfox</groupId>
  28. <artifactId>springfox-swagger-ui</artifactId>
  29. <version>${swagger.version}</version>
  30. </dependency>
  31. <!-- Knife4j Dependency -->
  32. <dependency>
  33. <groupId>com.github.xiaoymin</groupId>
  34. <artifactId>knife4j-spring-boot-starter</artifactId>
  35. <version>2.0.4</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.vladsch.flexmark</groupId>
  39. <artifactId>flexmark-all</artifactId>
  40. <version>0.62.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.poi</groupId>
  44. <artifactId>poi</artifactId>
  45. <version>5.2.3</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.poi</groupId>
  49. <artifactId>poi-ooxml</artifactId>
  50. <version>5.2.3</version>
  51. </dependency>
  52. <!-- poi-tl -->
  53. <dependency>
  54. <groupId>com.deepoove</groupId>
  55. <artifactId>poi-tl</artifactId>
  56. <version>1.12.0</version>
  57. </dependency>
  58. <!-- jsoup for HTML parsing (if needed) -->
  59. <dependency>
  60. <groupId>org.jsoup</groupId>
  61. <artifactId>jsoup</artifactId>
  62. <version>1.15.3</version>
  63. </dependency>
  64. </dependencies>
  65. </project>