pom.xml 8.0 KB

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