pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <artifactId>ghjg-item-datashare-server</artifactId>
  6. <build>
  7. <finalName>ghThreeDataShare</finalName>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-war-plugin</artifactId>
  11. <version>3.0.0</version>
  12. </plugin>
  13. <plugin>
  14. <artifactId>spring-boot-maven-plugin</artifactId>
  15. <configuration>
  16. <!-- 把本地jar 达成jar的时候加入-->
  17. <includeSystemScope>true</includeSystemScope>
  18. <mainClass>com.shanghaichengdi.ghjgitem.GhjgItemServerApplication</mainClass>
  19. </configuration>
  20. <executions>
  21. <execution>
  22. <goals>
  23. <goal>repackage</goal>
  24. </goals>
  25. </execution>
  26. </executions>
  27. <groupId>org.springframework.boot</groupId>
  28. <version>2.0.3.RELEASE</version>
  29. </plugin>
  30. <plugin>
  31. <artifactId>maven-dependency-plugin</artifactId>
  32. <executions>
  33. <execution>
  34. <configuration>
  35. <includeScope>system</includeScope>
  36. <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/lib
  37. </outputDirectory>
  38. </configuration>
  39. <goals>
  40. <goal>copy-dependencies</goal>
  41. </goals>
  42. <id>copy-dependencies</id>
  43. <phase>compile</phase>
  44. </execution>
  45. </executions>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <version>2.10</version>
  48. </plugin>
  49. <plugin>
  50. <artifactId>kotlin-maven-plugin</artifactId>
  51. <configuration>
  52. <jvmTarget>1.8</jvmTarget>
  53. </configuration>
  54. <executions>
  55. <execution>
  56. <goals>
  57. <goal>compile</goal>
  58. </goals>
  59. <id>compile</id>
  60. <phase>compile</phase>
  61. </execution>
  62. <execution>
  63. <goals>
  64. <goal>test-compile</goal>
  65. </goals>
  66. <id>test-compile</id>
  67. <phase>test-compile</phase>
  68. </execution>
  69. </executions>
  70. <groupId>org.jetbrains.kotlin</groupId>
  71. <version>${kotlin.version}</version>
  72. </plugin>
  73. <plugin>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <configuration>
  76. <encoding>UTF-8</encoding>
  77. <source>1.8</source>
  78. <target>1.8</target>
  79. </configuration>
  80. <executions>
  81. <execution>
  82. <goals>
  83. <goal>compile</goal>
  84. </goals>
  85. <id>compile</id>
  86. <phase>compile</phase>
  87. </execution>
  88. <execution>
  89. <goals>
  90. <goal>testCompile</goal>
  91. </goals>
  92. <id>testCompile</id>
  93. <phase>test-compile</phase>
  94. </execution>
  95. </executions>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <version>3.8.1</version>
  98. </plugin>
  99. </plugins>
  100. <resources>
  101. <resource>
  102. <directory>src/main/java</directory>
  103. <!-- 此配置不可缺,否则mybatis的Mapper.xml将会丢失 -->
  104. <includes>
  105. <include>**/*.xml</include>
  106. </includes>
  107. </resource>
  108. <resource>
  109. <!--打包时先排除不必要的文件,想要指定加入的再下面的resource指定-->
  110. <directory>${project.basedir}/src/main/resources</directory>
  111. <excludes>
  112. <exclude>profile/**</exclude>
  113. </excludes>
  114. </resource>
  115. <resource>
  116. <!-- 根据不同的环境,把对应文件夹里的配置文件打包-->
  117. <directory>${project.basedir}/src/main/resources/profile/${profiles.active}</directory>
  118. <filtering>true</filtering>
  119. </resource>
  120. </resources>
  121. </build>
  122. <dependencies>
  123. <dependency>
  124. <artifactId>spring-boot-starter</artifactId>
  125. <groupId>org.springframework.boot</groupId>
  126. </dependency>
  127. <dependency>
  128. <artifactId>spring-boot-starter-test</artifactId>
  129. <groupId>org.springframework.boot</groupId>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <artifactId>spring-boot-starter-web</artifactId>
  134. <groupId>org.springframework.boot</groupId>
  135. </dependency>
  136. <dependency>
  137. <artifactId>spring-boot-starter-data-redis</artifactId>
  138. <groupId>org.springframework.boot</groupId>
  139. </dependency>
  140. <dependency>
  141. <artifactId>spring-boot-starter-aop</artifactId>
  142. <groupId>org.springframework.boot</groupId>
  143. </dependency>
  144. <dependency>
  145. <artifactId>ghjg-item-datashare-common</artifactId>
  146. <groupId>com.shanghaichengdi</groupId>
  147. <version>1.0-SNAPSHOT</version>
  148. </dependency>
  149. <dependency>
  150. <artifactId>hutool-all</artifactId>
  151. <groupId>cn.hutool</groupId>
  152. </dependency>
  153. <dependency>
  154. <artifactId>jasypt-spring-boot-starter</artifactId>
  155. <groupId>com.github.ulisesbocchio</groupId>
  156. </dependency>
  157. <dependency>
  158. <artifactId>opencsv</artifactId>
  159. <groupId>com.opencsv</groupId>
  160. </dependency>
  161. <dependency>
  162. <artifactId>httpclient</artifactId>
  163. <groupId>org.apache.httpcomponents</groupId>
  164. </dependency>
  165. <dependency>
  166. <artifactId>mybatis-plus-boot-starter</artifactId>
  167. <groupId>com.baomidou</groupId>
  168. </dependency>
  169. <dependency>
  170. <artifactId>fastjson</artifactId>
  171. <groupId>com.alibaba</groupId>
  172. </dependency>
  173. <!-- <dependency>-->
  174. <!-- <artifactId>ojdbc6</artifactId>-->
  175. <!-- <groupId>com.oracle</groupId>-->
  176. <!-- </dependency>-->
  177. <dependency>
  178. <artifactId>ojdbc8</artifactId>
  179. <groupId>com.oracle.database.jdbc</groupId>
  180. </dependency>
  181. <!-- <dependency>-->
  182. <!-- <groupId>cn.com.kingbase</groupId>-->
  183. <!-- <artifactId>kingbase8</artifactId>-->
  184. <!-- </dependency>-->
  185. <dependency>
  186. <artifactId>springfox-swagger2</artifactId>
  187. <groupId>io.springfox</groupId>
  188. </dependency>
  189. <dependency>
  190. <artifactId>springfox-swagger-ui</artifactId>
  191. <groupId>io.springfox</groupId>
  192. </dependency>
  193. <dependency>
  194. <artifactId>pagehelper-spring-boot-starter</artifactId>
  195. <groupId>com.github.pagehelper</groupId>
  196. </dependency>
  197. <dependency>
  198. <artifactId>shiro-spring</artifactId>
  199. <groupId>org.apache.shiro</groupId>
  200. </dependency>
  201. <dependency>
  202. <artifactId>jjwt</artifactId>
  203. <groupId>io.jsonwebtoken</groupId>
  204. </dependency>
  205. <dependency>
  206. <artifactId>commons-lang3</artifactId>
  207. <groupId>org.apache.commons</groupId>
  208. </dependency>
  209. <dependency>
  210. <artifactId>easyexcel</artifactId>
  211. <groupId>com.alibaba</groupId>
  212. </dependency>
  213. <dependency>
  214. <artifactId>spring-boot-starter-validation</artifactId>
  215. <groupId>org.springframework.boot</groupId>
  216. </dependency>
  217. <dependency>
  218. <groupId>cn.smallbun.screw</groupId>
  219. <artifactId>screw-core</artifactId>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.zaxxer</groupId>
  223. <artifactId>HikariCP</artifactId>
  224. </dependency>
  225. </dependencies>
  226. <description>ghjg-item-server</description>
  227. <groupId>com.shanghaichengdi</groupId>
  228. <modelVersion>4.0.0</modelVersion>
  229. <name>ghThreeDataShare</name>
  230. <packaging>war</packaging>
  231. <parent>
  232. <artifactId>ghjg-item-datashare</artifactId>
  233. <groupId>com.shanghaichengdi</groupId>
  234. <version>1.0-SNAPSHOT</version>
  235. </parent>
  236. <profiles>
  237. <profile>
  238. <!-- 本地开发环境 -->
  239. <id>dev</id>
  240. <properties>
  241. <profiles.active>dev</profiles.active>
  242. </properties>
  243. </profile>
  244. <profile>
  245. <!-- 发布环境 -->
  246. <id>pro</id>
  247. <properties>
  248. <profiles.active>pro</profiles.active>
  249. </properties>
  250. </profile>
  251. <profile>
  252. <!-- 测试环境 -->
  253. <id>test</id>
  254. <properties>
  255. <profiles.active>test</profiles.active>
  256. </properties>
  257. </profile>
  258. </profiles>
  259. <properties>
  260. <java.version>1.8</java.version>
  261. </properties>
  262. <version>0.0.1-SNAPSHOT</version>
  263. </project>