pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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 https://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.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.zglc</groupId>
  12. <artifactId>vm</artifactId>
  13. <version>1.0</version>
  14. <name>Version Management</name>
  15. <description>Version management system based on Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.mybatis.spring.boot</groupId>
  26. <artifactId>mybatis-spring-boot-starter</artifactId>
  27. <version>2.1.3</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>druid-spring-boot-starter</artifactId>
  32. <version>1.1.10</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <scope>runtime</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>org.junit.vintage</groupId>
  46. <artifactId>junit-vintage-engine</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>tk.mybatis</groupId>
  52. <artifactId>mapper-spring-boot-starter</artifactId>
  53. <version>2.0.4</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.github.pagehelper</groupId>
  58. <artifactId>pagehelper</artifactId>
  59. <version>RELEASE</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.pagehelper</groupId>
  63. <artifactId>pagehelper-spring-boot-starter</artifactId>
  64. <version>RELEASE</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.spring4all</groupId>
  68. <artifactId>swagger-spring-boot-starter</artifactId>
  69. <version>1.6.0.RELEASE</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger2</artifactId>
  79. <version>2.7.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>io.springfox</groupId>
  83. <artifactId>springfox-swagger-ui</artifactId>
  84. <version>2.7.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.commons</groupId>
  88. <artifactId>commons-collections4</artifactId>
  89. <version>4.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-pool2</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-beanutils</groupId>
  97. <artifactId>commons-beanutils</artifactId>
  98. <version>1.9.2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.auth0</groupId>
  102. <artifactId>java-jwt</artifactId>
  103. <version>3.4.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-io</groupId>
  107. <artifactId>commons-io</artifactId>
  108. <version>2.6</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-data-redis</artifactId>
  113. <exclusions>
  114. <exclusion>
  115. <groupId>io.lettuce</groupId>
  116. <artifactId>lettuce-core</artifactId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <!--解析html包-->
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework</groupId>
  127. <artifactId>spring-test</artifactId>
  128. <version>5.0.5.RELEASE</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-collections4</artifactId>
  133. <version>4.1</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
  136. <dependency>
  137. <groupId>redis.clients</groupId>
  138. <artifactId>jedis</artifactId>
  139. </dependency>
  140. <!-- <dependency>-->
  141. <!-- <groupId>com.alibaba</groupId>-->
  142. <!-- <artifactId>easyexcel</artifactId>-->
  143. <!-- <version>1.1.2-beta4</version>-->
  144. <!-- </dependency>-->
  145. <dependency>
  146. <groupId>org.aspectj</groupId>
  147. <artifactId>aspectjweaver</artifactId>
  148. <version>1.8.13</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.poi</groupId>
  152. <artifactId>poi</artifactId>
  153. <version>3.17</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.poi</groupId>
  157. <artifactId>poi-ooxml</artifactId>
  158. <version>3.17</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.aspose</groupId>
  162. <artifactId>aspose-words</artifactId>
  163. <version>16.1.0</version>
  164. <scope>system</scope>
  165. <systemPath>${project.basedir}/lib/aspose-words-16.1.0-jdk16.jar</systemPath>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.aspose</groupId>
  169. <artifactId>aspose-cells</artifactId>
  170. <version>18.9.0</version>
  171. <scope>system</scope>
  172. <systemPath>${project.basedir}/lib/aspose-cells-18.9.jar</systemPath>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.aspose</groupId>
  176. <artifactId>aspose-slides</artifactId>
  177. <version>16.7.0</version>
  178. <scope>system</scope>
  179. <systemPath>${project.basedir}/lib/aspose-slides.jar</systemPath>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework.boot</groupId>
  183. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.alibaba</groupId>
  187. <artifactId>fastjson</artifactId>
  188. <version>1.2.32</version>
  189. </dependency>
  190. <!-- <dependency>-->
  191. <!-- <groupId>org.neo4j.driver</groupId>-->
  192. <!-- <artifactId>neo4j-java-driver-spring-boot-starter</artifactId>-->
  193. <!-- </dependency>-->
  194. </dependencies>
  195. <build>
  196. <plugins>
  197. <plugin>
  198. <groupId>org.springframework.boot</groupId>
  199. <artifactId>spring-boot-maven-plugin</artifactId>
  200. <configuration>
  201. <includeSystemScope>true</includeSystemScope>
  202. </configuration>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.mybatis.generator</groupId>
  206. <artifactId>mybatis-generator-maven-plugin</artifactId>
  207. <version>1.3.7</version>
  208. <configuration>
  209. <configurationFile>${basedir}/src/main/resources/generatorConfig.xml</configurationFile>
  210. <overwrite>true</overwrite>
  211. <verbose>true</verbose>
  212. </configuration>
  213. </plugin>
  214. <plugin>
  215. <groupId>org.apache.maven.plugins</groupId>
  216. <artifactId>maven-compiler-plugin</artifactId>
  217. <version>3.8.1</version>
  218. <configuration>
  219. <source>1.8</source>
  220. <target>1.8</target>
  221. </configuration>
  222. </plugin>
  223. <plugin>
  224. <groupId>com.spotify</groupId>
  225. <artifactId>dockerfile-maven-plugin</artifactId>
  226. <version>1.4.10</version>
  227. <executions>
  228. <execution>
  229. <id>default</id>
  230. <goals>
  231. <goal>build</goal>
  232. </goals>
  233. </execution>
  234. </executions>
  235. <configuration>
  236. <repository>${project.artifactId}</repository>
  237. <tag>${project.version}</tag>
  238. <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
  239. <buildArgs>
  240. <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
  241. </buildArgs>
  242. </configuration>
  243. </plugin>
  244. </plugins>
  245. </build>
  246. </project>