pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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>com.hcloud.microserver</groupId>
  7. <artifactId>common-parent</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../common-parent/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.hcloud.microserver</groupId>
  12. <artifactId>carbon-bank-service</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>carbon-bank-service</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.hcloud.microserver</groupId>
  22. <artifactId>common-core</artifactId>
  23. <version>${common.core.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.hcloud.microserver</groupId>
  27. <artifactId>carbon-manager-client</artifactId>
  28. <version>0.0.1-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mybatis</groupId>
  32. <artifactId>mybatis</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mybatis.spring.boot</groupId>
  40. <artifactId>mybatis-spring-boot-starter</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.google.code.gson</groupId>
  44. <artifactId>gson</artifactId>
  45. <version>2.8.5</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>net.sf.json-lib</groupId>
  49. <artifactId>json-lib</artifactId>
  50. <version>2.2.3</version>
  51. <classifier>jdk15</classifier><!-- 指定jdk版本 -->
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-eureka</artifactId>
  56. </dependency>
  57. <!--druid -->
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>druid</artifactId>
  61. </dependency>
  62. <!-- 分页支持pageHelper -->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper-spring-boot-starter</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mybatis.spring.boot</groupId>
  69. <artifactId>mybatis-spring-boot-starter</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-cache</artifactId>
  78. <version>1.5.18.RELEASE</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-data-redis</artifactId>
  83. </dependency>
  84. <!-- Ribbon依赖 -->
  85. <dependency>
  86. <groupId>org.springframework.cloud</groupId>
  87. <artifactId>spring-cloud-starter-ribbon</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.shiro</groupId>
  91. <artifactId>shiro-core</artifactId>
  92. <version>1.4.0</version>
  93. <scope>compile</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.codehaus.groovy</groupId>
  97. <artifactId>groovy</artifactId>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  100. <dependency>
  101. <groupId>commons-httpclient</groupId>
  102. <artifactId>commons-httpclient</artifactId>
  103. <version>3.1</version>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  106. <dependency>
  107. <groupId>com.alibaba</groupId>
  108. <artifactId>easyexcel</artifactId>
  109. <version>2.2.6</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>dom4j</groupId>
  113. <artifactId>dom4j</artifactId>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <!-- 打JAR包 -->
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-jar-plugin</artifactId>
  122. <configuration>
  123. <!-- 不打包资源文件(配置文件和依赖包分开) -->
  124. <excludes>
  125. <exclude>*.**</exclude>
  126. <exclude>*/*.xml</exclude>
  127. </excludes>
  128. <archive>
  129. <manifest>
  130. <addClasspath>true</addClasspath>
  131. <!-- MANIFEST.MF 中 Class-Path 加入前缀 -->
  132. <classpathPrefix>lib/</classpathPrefix>
  133. <!-- jar包不包含唯一版本标识 -->
  134. <useUniqueVersions>false</useUniqueVersions>
  135. <!--指定入口类 -->
  136. <mainClass>com.hcloud.microserver.bank.CarbonManagerServiceApplication</mainClass>
  137. </manifest>
  138. <manifestEntries>
  139. <!--MANIFEST.MF 中 Class-Path 加入资源文件目录 -->
  140. <Class-Path>./resources/</Class-Path>
  141. </manifestEntries>
  142. </archive>
  143. <outputDirectory>${project.build.directory}</outputDirectory>
  144. </configuration>
  145. </plugin>
  146. <!-- 该插件的作用是用于复制依赖的jar包到指定的文件夹里 -->
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-dependency-plugin</artifactId>
  150. <executions>
  151. <execution>
  152. <id>copy-dependencies</id>
  153. <phase>package</phase>
  154. <goals>
  155. <goal>copy-dependencies</goal>
  156. </goals>
  157. <configuration>
  158. <outputDirectory>${project.build.directory}/lib/</outputDirectory>
  159. </configuration>
  160. </execution>
  161. </executions>
  162. </plugin>
  163. <!-- 该插件的作用是用于复制指定的文件 -->
  164. <plugin>
  165. <artifactId>maven-resources-plugin</artifactId>
  166. <executions>
  167. <execution> <!-- 复制配置文件 -->
  168. <id>copy-resources</id>
  169. <phase>package</phase>
  170. <goals>
  171. <goal>copy-resources</goal>
  172. </goals>
  173. <configuration>
  174. <resources>
  175. <resource>
  176. <directory>src/main/resources</directory>
  177. <includes>
  178. <!-- <include>*.properties</include> -->
  179. </includes>
  180. </resource>
  181. </resources>
  182. <outputDirectory>${project.build.directory}/resources</outputDirectory>
  183. </configuration>
  184. </execution>
  185. </executions>
  186. </plugin>
  187. <!-- SpringBoot 打包插件,把 maven-jar-plugin 打成的jar包重新打成可运行jar包 -->
  188. <plugin>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-maven-plugin</artifactId>
  191. <configuration>
  192. <!--重写包含依赖,包含不存在的依赖,jar里没有pom里的依赖 -->
  193. <includes>
  194. <include>
  195. <groupId>null</groupId>
  196. <artifactId>null</artifactId>
  197. </include>
  198. </includes>
  199. <layout>ZIP</layout>
  200. <!--使用外部配置文件,jar包里没有资源文件 -->
  201. <addResources>true</addResources>
  202. <outputDirectory>${project.build.directory}/resources</outputDirectory>
  203. </configuration>
  204. <executions>
  205. <execution>
  206. <goals>
  207. <goal>repackage</goal>
  208. </goals>
  209. <configuration>
  210. <!--配置jar包特殊标识 配置后,保留原文件,生成新文件 *-run.jar -->
  211. <!--配置jar包特殊标识 不配置,原文件命名为 *.jar.original,生成新文件 *.jar -->
  212. <classifier>run</classifier>
  213. </configuration>
  214. </execution>
  215. </executions>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-surefire-plugin</artifactId>
  220. <version>2.18.1</version>
  221. <configuration>
  222. <skipTests>true</skipTests>
  223. </configuration>
  224. </plugin>
  225. <plugin>
  226. <groupId>org.mybatis.generator</groupId>
  227. <artifactId>mybatis-generator-maven-plugin</artifactId>
  228. <version>1.3.5</version>
  229. <dependencies>
  230. <dependency>
  231. <groupId> mysql</groupId>
  232. <artifactId> mysql-connector-java</artifactId>
  233. <version>5.1.39</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.mybatis.generator</groupId>
  237. <artifactId>mybatis-generator-core</artifactId>
  238. <version>1.3.5</version>
  239. </dependency>
  240. </dependencies>
  241. <executions>
  242. <execution>
  243. <id>Generate MyBatis Artifacts</id>
  244. <phase>deploy</phase>
  245. <goals>
  246. <goal>generate</goal>
  247. </goals>
  248. </execution>
  249. </executions>
  250. <configuration>
  251. <!--允许移动生成的文件 -->
  252. <verbose>true</verbose>
  253. <!-- 是否覆盖 -->
  254. <overwrite>true</overwrite>
  255. <!-- 自动生成的配置 -->
  256. <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
  257. </configuration>
  258. </plugin>
  259. </plugins>
  260. </build>
  261. </project>