pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>chuannong-export</groupId>
  6. <artifactId>chuannong-export</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  11. </properties>
  12. <dependencies>
  13. <dependency>
  14. <groupId>net.coobird</groupId>
  15. <artifactId>thumbnailator</artifactId>
  16. <version>0.4.8</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.swagger</groupId>
  20. <artifactId>swagger-annotations</artifactId>
  21. <version>1.5.24</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.swagger</groupId>
  25. <artifactId>swagger-models</artifactId>
  26. <version>1.5.24</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.springfox</groupId>
  30. <artifactId>springfox-swagger2</artifactId>
  31. <version>2.9.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.xiaoymin</groupId>
  35. <artifactId>swagger-bootstrap-ui</artifactId>
  36. <version>1.9.6</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.springfox</groupId>
  40. <artifactId>springfox-swagger-ui</artifactId>
  41. <version>2.9.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. <version>8.0.17</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.logging.log4j</groupId>
  50. <artifactId>log4j-1.2-api</artifactId>
  51. <version>2.3</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.poi</groupId>
  55. <artifactId>poi</artifactId>
  56. <version>3.17</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. <version>1.2.76</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.jsoup</groupId>
  65. <artifactId>jsoup</artifactId>
  66. <version>1.13.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.commons</groupId>
  70. <artifactId>commons-lang3</artifactId>
  71. <version>3.12.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi-ooxml</artifactId>
  76. <version>3.17</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.squareup.okhttp3</groupId>
  80. <artifactId>okhttp</artifactId>
  81. <version>3.11.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.google.guava</groupId>
  85. <artifactId>guava</artifactId>
  86. <version>23.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-io</groupId>
  90. <artifactId>commons-io</artifactId>
  91. <version>2.5</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.google.code.gson</groupId>
  95. <artifactId>gson</artifactId>
  96. <version>2.8.5</version>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <finalName>${project.artifactId}</finalName>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-maven-plugin</artifactId>
  105. <configuration>
  106. <includeSystemScope>true</includeSystemScope>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>