pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. <groupId>com.github</groupId>
  7. <artifactId>jfcloud-excel-edit</artifactId>
  8. <version>k6</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.5.3</version>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. <jedis.version>2.9.0</jedis.version>
  19. <log4jdbc.version>1.16</log4jdbc.version>
  20. <swagger.version>2.9.2</swagger.version>
  21. <fastjson.version>1.2.54</fastjson.version>
  22. <commons-pool2.version>2.5.0</commons-pool2.version>
  23. <mapstruct.version>1.2.0.Final</mapstruct.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <!--io常用工具类 -->
  36. <dependency>
  37. <groupId>commons-io</groupId>
  38. <artifactId>commons-io</artifactId>
  39. <version>2.2</version>
  40. </dependency>
  41. <!--文件上传工具类 -->
  42. <dependency>
  43. <groupId>commons-fileupload</groupId>
  44. <artifactId>commons-fileupload</artifactId>
  45. <version>1.2.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-collections</groupId>
  49. <artifactId>commons-collections</artifactId>
  50. <version>3.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.41</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.baomidou</groupId>
  59. <artifactId>mybatis-plus-boot-starter</artifactId>
  60. <version>3.4.3</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>druid-spring-boot-starter</artifactId>
  65. <version>1.2.4</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  74. <version>2.1.1.RELEASE</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-lang3</artifactId>
  79. <version>3.3.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-codec</groupId>
  83. <artifactId>commons-codec</artifactId>
  84. <version>1.14</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.hashids</groupId>
  88. <artifactId>hashids</artifactId>
  89. <version>1.0.3</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.code.gson</groupId>
  93. <artifactId>gson</artifactId>
  94. <version>2.8.5</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.googlecode.json-simple</groupId>
  98. <artifactId>json-simple</artifactId>
  99. <version>1.1</version>
  100. </dependency>
  101. <!-- swagger2 依赖 -->
  102. <dependency>
  103. <groupId>io.springfox</groupId>
  104. <artifactId>springfox-swagger2</artifactId>
  105. <version>2.7.0</version>
  106. </dependency>
  107. <!-- Swagger第三方ui依赖 -->
  108. <dependency>
  109. <groupId>com.github.xiaoymin</groupId>
  110. <artifactId>swagger-bootstrap-ui</artifactId>
  111. <version>1.9.6</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.amazonaws</groupId>
  115. <artifactId>aws-java-sdk-s3</artifactId>
  116. <version>1.11.543</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.aspectj</groupId>
  120. <artifactId>aspectjrt</artifactId>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-maven-plugin</artifactId>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-resources-plugin</artifactId>
  132. <version>3.0.2</version>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>