pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.jzg</groupId>
  8. <artifactId>insurance</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>quotation-summary</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <!-- <dependency>-->
  20. <!-- <groupId>com.jzg</groupId>-->
  21. <!-- <artifactId>quotation-dajia</artifactId>-->
  22. <!-- <version>1.0-SNAPSHOT</version>-->
  23. <!-- </dependency>-->
  24. <!-- <dependency>-->
  25. <!-- <groupId>com.jzg</groupId>-->
  26. <!-- <artifactId>quotation-zhongmei</artifactId>-->
  27. <!-- <version>1.0-SNAPSHOT</version>-->
  28. <!-- </dependency>-->
  29. <!-- <dependency>-->
  30. <!-- <groupId>com.jzg</groupId>-->
  31. <!-- <artifactId>quotation-zijin</artifactId>-->
  32. <!-- <version>1.0-SNAPSHOT</version>-->
  33. <!-- </dependency>-->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.jzg</groupId>
  40. <artifactId>quotation-zhongmei</artifactId>
  41. <version>1.0-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.jzg</groupId>
  45. <artifactId>quotation-commons</artifactId>
  46. <version>1.0-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.jzg</groupId>
  50. <artifactId>quotation-yongcheng</artifactId>
  51. <version>1.0-SNAPSHOT</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.jzg</groupId>
  56. <artifactId>quotation-chengtai</artifactId>
  57. <version>1.0-SNAPSHOT</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.jzg</groupId>
  62. <artifactId>quotation-dajia</artifactId>
  63. <version>1.0-SNAPSHOT</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.jzg</groupId>
  68. <artifactId>quotation-yangguang</artifactId>
  69. <version>1.0-SNAPSHOT</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.jzg</groupId>
  74. <artifactId>quotation-taikang</artifactId>
  75. <version>1.0-SNAPSHOT</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.jzg</groupId>
  79. <artifactId>quotation-guoren</artifactId>
  80. <version>1.0-SNAPSHOT</version>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.jzg</groupId>
  85. <artifactId>quotation-huatai</artifactId>
  86. <version>1.0-SNAPSHOT</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.jzg</groupId>
  91. <artifactId>quotation-bohai</artifactId>
  92. <version>1.0-SNAPSHOT</version>
  93. <scope>compile</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.jzg</groupId>
  97. <artifactId>quotation-huanong</artifactId>
  98. <version>1.0-SNAPSHOT</version>
  99. <scope>compile</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.jzg</groupId>
  103. <artifactId>quotation-hengbang</artifactId>
  104. <version>1.0-SNAPSHOT</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.jzg</groupId>
  108. <artifactId>quotation-ansheng</artifactId>
  109. <version>1.0-SNAPSHOT</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.jzg</groupId>
  113. <artifactId>quotation-zhongan</artifactId>
  114. <version>1.0-SNAPSHOT</version>
  115. </dependency>
  116. <!-- thymeleaf 模版类 -->
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. <executions>
  128. <execution>
  129. <id>repackage</id>
  130. <phase>none</phase>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.apache.maven.plugins</groupId>
  136. <artifactId>maven-dependency-plugin</artifactId>
  137. <executions>
  138. <execution>
  139. <id>copy-dependencies</id>
  140. <phase>package</phase>
  141. <goals>
  142. <goal>copy-dependencies</goal>
  143. </goals>
  144. <configuration>
  145. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  146. <overWriteReleases>false</overWriteReleases>
  147. <overWriteSnapshots>false</overWriteSnapshots>
  148. <overWriteIfNewer>true</overWriteIfNewer>
  149. </configuration>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-jar-plugin</artifactId>
  156. <configuration>
  157. <archive>
  158. <manifest>
  159. <addClasspath>true</addClasspath>
  160. <classpathPrefix>lib/</classpathPrefix>
  161. <mainClass>com.jzg.quotation.summary.SummaryQuotationApplication</mainClass> <!-- 替换为你的主类 -->
  162. <useUniqueVersions>false</useUniqueVersions>
  163. </manifest>
  164. <manifestEntries>
  165. <Class-Path>config/</Class-Path>
  166. </manifestEntries>
  167. </archive>
  168. <outputDirectory>${project.parent.basedir}/../../target</outputDirectory>
  169. </configuration>
  170. </plugin>
  171. <plugin>
  172. <groupId>org.apache.maven.plugins</groupId>
  173. <artifactId>maven-resources-plugin</artifactId>
  174. <version>3.1.0</version>
  175. </plugin>
  176. </plugins>
  177. </build>
  178. </project>