pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.5.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.jkcredit.invoice</groupId>
  12. <artifactId>sys_invoice</artifactId>
  13. <version>1.0</version>
  14. <name>sys_invoice</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <hutool.version>4.4.3</hutool.version>
  19. <mybatis-plus.version>3.1.0</mybatis-plus.version>
  20. <mysql.version>8.0.15</mysql.version>
  21. <redis.version>2.1.3.RELEASE</redis.version>
  22. <swagger.version>2.9.2</swagger.version>
  23. <maven.compiler.source>1.8</maven.compiler.source>
  24. <maven.compiler.target>1.8</maven.compiler.target>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-aop</artifactId>
  44. </dependency>
  45. <!--mybatis-plus插件-->
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. <version>${mybatis-plus.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>mysql</groupId>
  53. <artifactId>mysql-connector-java</artifactId>
  54. <version>${mysql.version}</version>
  55. </dependency>
  56. <!--hutool-->
  57. <dependency>
  58. <groupId>cn.hutool</groupId>
  59. <artifactId>hutool-all</artifactId>
  60. <version>${hutool.version}</version>
  61. </dependency>
  62. <!--redis-->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-redis</artifactId>
  66. <version>${redis.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>druid-spring-boot-starter</artifactId>
  71. <version>1.1.10</version>
  72. </dependency>
  73. <!--server-api-->
  74. <dependency>
  75. <groupId>javax.servlet</groupId>
  76. <artifactId>javax.servlet-api</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.springfox</groupId>
  80. <artifactId>springfox-swagger2</artifactId>
  81. <version>${swagger.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-quartz</artifactId>
  86. </dependency>
  87. <!-- <dependency>-->
  88. <!-- <groupId>io.springfox</groupId>-->
  89. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  90. <!-- <version>${swagger.version}</version>-->
  91. <!-- </dependency>-->
  92. <dependency>
  93. <groupId>com.github.caspar-chen</groupId>
  94. <artifactId>swagger-ui-layer</artifactId>
  95. <version>1.1.3</version>
  96. </dependency>
  97. <!-- &lt;!&ndash;web 模块&ndash;&gt;-->
  98. <!-- <dependency>-->
  99. <!-- <groupId>org.springframework.boot</groupId>-->
  100. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  101. <!-- <exclusions>-->
  102. <!-- &lt;!&ndash;排除tomcat依赖&ndash;&gt;-->
  103. <!-- <exclusion>-->
  104. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  105. <!-- <groupId>org.springframework.boot</groupId>-->
  106. <!-- </exclusion>-->
  107. <!-- </exclusions>-->
  108. <!-- </dependency>-->
  109. <!-- &lt;!&ndash;undertow容器&ndash;&gt;-->
  110. <!-- <dependency>-->
  111. <!-- <groupId>org.springframework.boot</groupId>-->
  112. <!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
  113. <!-- </dependency>-->
  114. <dependency>
  115. <groupId>org.apache.poi</groupId>
  116. <artifactId>poi</artifactId>
  117. <version>3.15</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.poi</groupId>
  121. <artifactId>poi-ooxml</artifactId>
  122. <version>3.15</version>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-scratchpad -->
  125. <dependency>
  126. <groupId>org.apache.poi</groupId>
  127. <artifactId>poi-scratchpad</artifactId>
  128. <version>3.15</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.auth0</groupId>
  132. <artifactId>java-jwt</artifactId>
  133. <version>3.0.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>commons-lang</groupId>
  137. <artifactId>commons-lang</artifactId>
  138. <version>2.6</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-io</groupId>
  142. <artifactId>commons-io</artifactId>
  143. <version>2.6</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.google.guava</groupId>
  147. <artifactId>guava</artifactId>
  148. <version>21.0</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>cn.afterturn</groupId>
  152. <artifactId>easypoi-spring-boot-starter</artifactId>
  153. <version>3.3.0</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-starter-amqp</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>ch.qos.logback</groupId>
  161. <artifactId>logback-core</artifactId>
  162. <version>1.1.7</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>ch.qos.logback</groupId>
  166. <artifactId>logback-access</artifactId>
  167. <version>1.1.7</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>ch.qos.logback</groupId>
  171. <artifactId>logback-classic</artifactId>
  172. <version>1.1.7</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.alibaba</groupId>
  176. <artifactId>fastjson</artifactId>
  177. <version>1.2.58</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>joda-time</groupId>
  181. <artifactId>joda-time</artifactId>
  182. <version>2.9.2</version>
  183. </dependency>
  184. </dependencies>
  185. <build>
  186. <plugins>
  187. <plugin>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-maven-plugin</artifactId>
  190. </plugin>
  191. <!-- <plugin>
  192. <groupId>org.mybatis.generator</groupId>
  193. <artifactId>mybatis-generator-maven-plugin</artifactId>
  194. <version>1.3.2</version>
  195. <configuration>
  196. <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
  197. <verbose>true</verbose>
  198. <overwrite>true</overwrite>
  199. </configuration>
  200. <executions>
  201. <execution>
  202. <id>Generate MyBatis Artifacts</id>
  203. <goals>
  204. <goal>generate</goal>
  205. </goals>
  206. </execution>
  207. </executions>
  208. <dependencies>
  209. <dependency>
  210. <groupId>org.mybatis.generator</groupId>
  211. <artifactId>mybatis-generator-core</artifactId>
  212. <version>1.3.2</version>
  213. </dependency>
  214. </dependencies>
  215. </plugin>-->
  216. </plugins>
  217. </build>
  218. </project>