敏捷工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

383 lines
11 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  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. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.5.6</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.whn</groupId>
  13. <artifactId>AgileTools</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <name>hellospring</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <kotlin.version>1.3.50</kotlin.version>
  20. <mybatis.version>2.1.2</mybatis.version>
  21. <mybatis.plugin.version>3.4.3</mybatis.plugin.version>
  22. <pagehelper.version>1.2.13</pagehelper.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-aop</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-swagger2</artifactId>
  32. <version>2.9.2</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  35. <dependency>
  36. <groupId>com.google.guava</groupId>
  37. <artifactId>guava</artifactId>
  38. <version>30.1.1-jre</version>
  39. </dependency>
  40. <!-- jwt -->
  41. <dependency>
  42. <groupId>io.jsonwebtoken</groupId>
  43. <artifactId>jjwt</artifactId>
  44. <version>0.9.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.httpcomponents</groupId>
  48. <artifactId>httpcore</artifactId>
  49. <version>4.4.5</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.httpcomponents</groupId>
  53. <artifactId>httpclient</artifactId>
  54. <version>4.5.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <version>1.2.33</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.commons</groupId>
  63. <artifactId>commons-lang3</artifactId>
  64. <version>3.6</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>redis.clients</groupId>
  69. <artifactId>jedis</artifactId>
  70. <version>2.9.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-web</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-test</artifactId>
  79. <scope>test</scope>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.junit.vintage</groupId>
  83. <artifactId>junit-vintage-engine</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-web</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-jdbc</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.h2database</groupId>
  97. <artifactId>h2</artifactId>
  98. <scope>runtime</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-data-jpa</artifactId>
  103. </dependency>
  104. <!-- <dependency>-->
  105. <!-- <groupId>org.joda</groupId>-->
  106. <!-- <artifactId>joda-money</artifactId>-->
  107. <!-- <version>LATEST</version>-->
  108. <!-- </dependency>-->
  109. <dependency>
  110. <groupId>org.jadira.usertype</groupId>
  111. <artifactId>usertype.core</artifactId>
  112. <version>6.0.1.GA</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. <optional>true</optional>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.mybatis.spring.boot</groupId>
  121. <artifactId>mybatis-spring-boot-starter</artifactId>
  122. <version>${mybatis.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.baomidou</groupId>
  126. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  127. <version>3.2.0</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.mybatis.generator</groupId>
  131. <artifactId>mybatis-generator-core</artifactId>
  132. <version>1.3.7</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>commons-codec</groupId>
  136. <artifactId>commons-codec</artifactId>
  137. <version>1.14</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.baomidou</groupId>
  141. <artifactId>mybatis-plus-boot-starter</artifactId>
  142. <version>${mybatis.plugin.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.github.pagehelper</groupId>
  146. <artifactId>pagehelper-spring-boot-starter</artifactId>
  147. <version>${pagehelper.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>mysql</groupId>
  151. <artifactId>mysql-connector-java</artifactId>
  152. </dependency>
  153. <!-- <dependency>-->
  154. <!-- <groupId>com.googlecode.log4jdbc</groupId>-->
  155. <!-- <artifactId>log4jdbc</artifactId>-->
  156. <!-- <version>RELEASE</version>-->
  157. <!-- </dependency>-->
  158. <dependency>
  159. <groupId>com.spring4all</groupId>
  160. <artifactId>swagger-spring-boot-starter</artifactId>
  161. <version>1.9.0.RELEASE</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.hibernate.javax.persistence</groupId>
  165. <artifactId>hibernate-jpa-2.1-api</artifactId>
  166. <version>1.0.0.Draft-16</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework.boot</groupId>
  170. <artifactId>spring-boot-starter-validation</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.jetbrains.kotlin</groupId>
  174. <artifactId>kotlin-stdlib-jdk8</artifactId>
  175. <version>${kotlin.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.jetbrains.kotlin</groupId>
  179. <artifactId>kotlin-test</artifactId>
  180. <version>${kotlin.version}</version>
  181. <scope>test</scope>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-starter-aop</artifactId>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.aspectj</groupId>
  189. <artifactId>aspectjweaver</artifactId>
  190. <version>1.9.6</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.gitlab4j</groupId>
  194. <artifactId>gitlab4j-api</artifactId>
  195. <version>4.19.0</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.springframework.boot</groupId>
  199. <artifactId>spring-boot-configuration-processor</artifactId>
  200. <optional>true</optional>
  201. </dependency>
  202. </dependencies>
  203. <build>
  204. <finalName>um-backend</finalName>
  205. <plugins>
  206. <plugin>
  207. <groupId>org.springframework.boot</groupId>
  208. <artifactId>spring-boot-maven-plugin</artifactId>
  209. <executions>
  210. <execution>
  211. <goals>
  212. <goal>repackage</goal>
  213. </goals>
  214. </execution>
  215. </executions>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-compiler-plugin</artifactId>
  220. <configuration>
  221. <source>8</source>
  222. <target>8</target>
  223. </configuration>
  224. </plugin>
  225. </plugins>
  226. <resources>
  227. <resource>
  228. <directory>${project.basedir}/lib/</directory>
  229. <targetPath>BOOT-INF/lib/</targetPath>
  230. <includes>
  231. <include>**/*.jar</include>
  232. </includes>
  233. </resource>
  234. <resource>
  235. <directory>src/main/resources</directory>
  236. <includes>
  237. <include>**/*.xml</include>
  238. <include>**/*.yml</include>
  239. </includes>
  240. <filtering>false</filtering>
  241. </resource>
  242. </resources>
  243. </build>
  244. <!-- <build>-->
  245. <!-- <finalName>um-backend</finalName>-->
  246. <!-- <plugins>-->
  247. <!-- <plugin>-->
  248. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  249. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  250. <!-- <configuration>-->
  251. <!-- <archive>-->
  252. <!-- <manifest>-->
  253. <!-- <addClasspath>true</addClasspath>-->
  254. <!-- <mainClass>com.whn.hellospring.AgileToolsApplication</mainClass> &lt;!&ndash; 此处为主入口&ndash;&gt;-->
  255. <!-- </manifest>-->
  256. <!-- </archive>-->
  257. <!-- </configuration>-->
  258. <!-- </plugin>-->
  259. <!-- <plugin>-->
  260. <!-- <groupId>org.jetbrains.kotlin</groupId>-->
  261. <!-- <artifactId>kotlin-maven-plugin</artifactId>-->
  262. <!-- <version>${kotlin.version}</version>-->
  263. <!-- <executions>-->
  264. <!-- <execution>-->
  265. <!-- <id>compile</id>-->
  266. <!-- <phase>compile</phase>-->
  267. <!-- <goals>-->
  268. <!-- <goal>compile</goal>-->
  269. <!-- </goals>-->
  270. <!-- </execution>-->
  271. <!-- <execution>-->
  272. <!-- <id>test-compile</id>-->
  273. <!-- <phase>test-compile</phase>-->
  274. <!-- <goals>-->
  275. <!-- <goal>test-compile</goal>-->
  276. <!-- </goals>-->
  277. <!-- </execution>-->
  278. <!-- </executions>-->
  279. <!-- <configuration>-->
  280. <!-- <jvmTarget>1.8</jvmTarget>-->
  281. <!-- </configuration>-->
  282. <!-- </plugin>-->
  283. <!-- <plugin>-->
  284. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  285. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  286. <!-- <configuration>-->
  287. <!-- <source>8</source>-->
  288. <!-- <target>8</target>-->
  289. <!-- </configuration>-->
  290. <!-- <executions>-->
  291. <!-- <execution>-->
  292. <!-- <id>compile</id>-->
  293. <!-- <phase>compile</phase>-->
  294. <!-- <goals>-->
  295. <!-- <goal>compile</goal>-->
  296. <!-- </goals>-->
  297. <!-- </execution>-->
  298. <!-- <execution>-->
  299. <!-- <id>testCompile</id>-->
  300. <!-- <phase>test-compile</phase>-->
  301. <!-- <goals>-->
  302. <!-- <goal>testCompile</goal>-->
  303. <!-- </goals>-->
  304. <!-- </execution>-->
  305. <!-- </executions>-->
  306. <!-- </plugin>-->
  307. <!-- <plugin>-->
  308. <!-- <groupId>com.spotify</groupId>-->
  309. <!-- <artifactId>docker-maven-plugin</artifactId>-->
  310. <!-- <version>1.2.2</version>-->
  311. <!-- <executions>-->
  312. <!-- <execution>-->
  313. <!-- <id>build-image</id>-->
  314. <!-- <phase>package</phase>-->
  315. <!-- <goals>-->
  316. <!-- <goal>build</goal>-->
  317. <!-- </goals>-->
  318. <!-- </execution>-->
  319. <!-- </executions>-->
  320. <!-- <configuration>-->
  321. <!-- <imageName>testc</imageName>-->
  322. <!-- <forceTags>true</forceTags>&lt;!&ndash; 每次新的构建上覆盖镜像tags &ndash;&gt;-->
  323. <!-- <imageTags>-->
  324. <!-- <imageTag>111</imageTag> &lt;!&ndash; -DpushImageTags没有-DdockerImageTags=xxx时,默认推送这个版本 &ndash;&gt;-->
  325. <!-- </imageTags>-->
  326. <!-- <baseImage>openjdk:8-jdk-alpine</baseImage>-->
  327. <!-- <entryPoint>["sh", "-c", "java $JAVA_OPTIONS -jar /${project.build.finalName}.jar"]</entryPoint>-->
  328. <!-- <resources>-->
  329. <!-- <resource>-->
  330. <!-- <targetPath>/</targetPath>-->
  331. <!-- <directory>${project.build.directory}</directory>-->
  332. <!-- <include>${project.build.finalName}.jar</include>-->
  333. <!-- </resource>-->
  334. <!-- </resources>-->
  335. <!-- </configuration>-->
  336. <!-- </plugin>-->
  337. <!-- </plugins>-->
  338. <!-- </build>-->
  339. </project>