pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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>traced-source-web</artifactId>
  13. <version>${traced.source.web.version}</version>
  14. <packaging>jar</packaging>
  15. <name>traced-source-web</name>
  16. <description>Demo project for Spring Boot</description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.hcloud.microserver</groupId>
  20. <artifactId>org-manage-client</artifactId>
  21. <version>${org.managerclient.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.hcloud.microserver</groupId>
  25. <artifactId>goods-manage-client</artifactId>
  26. <version>${goods.managerclient.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-tomcat</artifactId>
  31. <!--<scope>provided</scope>-->
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-redis</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-eureka</artifactId>
  40. <exclusions>
  41. <exclusion>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. <groupId>org.springframework.boot</groupId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.shiro</groupId>
  53. <artifactId>shiro-spring</artifactId>
  54. <version>${shiro.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.crazycake</groupId>
  58. <artifactId>shiro-redis</artifactId>
  59. <version>2.4.2.1-RELEASE</version>
  60. </dependency>
  61. </dependencies>
  62. <!-- <build>
  63. <plugins>
  64. 打JAR包
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-jar-plugin</artifactId>
  68. <configuration>
  69. 不打包资源文件(配置文件和依赖包分开)
  70. <excludes>
  71. <exclude>*.**</exclude>
  72. <exclude>*/*.xml</exclude>
  73. </excludes>
  74. <archive>
  75. <manifest>
  76. <addClasspath>true</addClasspath>
  77. MANIFEST.MF 中 Class-Path 加入前缀
  78. <classpathPrefix>lib/</classpathPrefix>
  79. jar包不包含唯一版本标识
  80. <useUniqueVersions>false</useUniqueVersions>
  81. 指定入口类
  82. <mainClass>com.hcloud.microservice.traced.TracedSourceWebApplication</mainClass>
  83. </manifest>
  84. <manifestEntries>
  85. MANIFEST.MF 中 Class-Path 加入资源文件目录
  86. <Class-Path>./resources/</Class-Path>
  87. </manifestEntries>
  88. </archive>
  89. <outputDirectory>${project.build.directory}</outputDirectory>
  90. </configuration>
  91. </plugin>
  92. 该插件的作用是用于复制依赖的jar包到指定的文件夹里
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-dependency-plugin</artifactId>
  96. <executions>
  97. <execution>
  98. <id>copy-dependencies</id>
  99. <phase>package</phase>
  100. <goals>
  101. <goal>copy-dependencies</goal>
  102. </goals>
  103. <configuration>
  104. <outputDirectory>${project.build.directory}/lib/</outputDirectory>
  105. </configuration>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. 该插件的作用是用于复制指定的文件
  110. <plugin>
  111. <artifactId>maven-resources-plugin</artifactId>
  112. <executions>
  113. <execution> 复制配置文件
  114. <id>copy-resources</id>
  115. <phase>package</phase>
  116. <goals>
  117. <goal>copy-resources</goal>
  118. </goals>
  119. <configuration>
  120. <resources>
  121. <resource>
  122. <directory>src/main/resources</directory>
  123. <includes>
  124. <include>*.properties</include>
  125. </includes>
  126. </resource>
  127. </resources>
  128. <outputDirectory>${project.build.directory}/resources</outputDirectory>
  129. </configuration>
  130. </execution>
  131. </executions>
  132. </plugin>
  133. SpringBoot 打包插件,把 maven-jar-plugin 打成的jar包重新打成可运行jar包
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <configuration>
  138. 重写包含依赖,包含不存在的依赖,jar里没有pom里的依赖
  139. <includes>
  140. <include>
  141. <groupId>null</groupId>
  142. <artifactId>null</artifactId>
  143. </include>
  144. </includes>
  145. <layout>ZIP</layout>
  146. 使用外部配置文件,jar包里没有资源文件
  147. <addResources>true</addResources>
  148. <outputDirectory>${project.build.directory}/resources</outputDirectory>
  149. </configuration>
  150. <executions>
  151. <execution>
  152. <goals>
  153. <goal>repackage</goal>
  154. </goals>
  155. <configuration>
  156. 配置jar包特殊标识 配置后,保留原文件,生成新文件 *-run.jar
  157. 配置jar包特殊标识 不配置,原文件命名为 *.jar.original,生成新文件 *.jar
  158. <classifier>run</classifier>
  159. </configuration>
  160. </execution>
  161. </executions>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.springframework.boot</groupId>
  165. <artifactId>spring-boot-maven-plugin</artifactId>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-surefire-plugin</artifactId>
  170. <version>2.18.1</version>
  171. <configuration>
  172. <skipTests>true</skipTests>
  173. </configuration>
  174. </plugin>
  175. </plugins>
  176. </build> -->
  177. <build>
  178. <plugins>
  179. <plugin>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-maven-plugin</artifactId>
  182. </plugin>
  183. <plugin>
  184. <groupId>org.apache.maven.plugins</groupId>
  185. <artifactId>maven-surefire-plugin</artifactId>
  186. <version>2.18.1</version>
  187. <configuration>
  188. <skipTests>true</skipTests>
  189. </configuration>
  190. </plugin>
  191. </plugins>
  192. </build>
  193. </project>