pom.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>xingxi</artifactId>
  6. <groupId>com.xingxi</groupId>
  7. <version>4.7.9</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>xingxi-mq-server</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <name>xingxi-mq-server</name>
  13. <description>xingxi-mq-server</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.xingxi</groupId>
  17. <artifactId>xingxi-system</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-amqp</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-aop</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-lang3</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.mybatis.spring.boot</groupId>
  37. <artifactId>mybatis-spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>mysql</groupId>
  41. <artifactId>mysql-connector-java</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>druid-spring-boot-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.google.guava</groupId>
  49. <artifactId>guava</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>javax.servlet</groupId>
  53. <artifactId>javax.servlet-api</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-codec</groupId>
  57. <artifactId>commons-codec</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-io</groupId>
  61. <artifactId>commons-io</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-httpclient</groupId>
  65. <artifactId>commons-httpclient</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>fastjson</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.dataformat</groupId>
  73. <artifactId>jackson-dataformat-xml</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. <optional>true</optional>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-devtools</artifactId>
  83. <optional>true</optional>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-test</artifactId>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.httpcomponents</groupId>
  92. <artifactId>httpmime</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>kp</groupId>
  96. <artifactId>kp</artifactId>
  97. <version>1.0</version>
  98. <scope>system</scope>
  99. <systemPath>${pom.basedir}/lib/kp-1.0.jar</systemPath>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.binarywang</groupId>
  103. <artifactId>weixin-java-pay</artifactId>
  104. <version>4.5.0</version>
  105. <scope>compile</scope>
  106. </dependency>
  107. </dependencies>
  108. <build>
  109. <finalName>${project.artifactId}</finalName>
  110. <resources>
  111. <resource>
  112. <directory>src/main/java</directory>
  113. <filtering>false</filtering>
  114. </resource>
  115. <resource>
  116. <directory>src/main/resources</directory>
  117. <filtering>true</filtering>
  118. <includes>
  119. <include>**</include>
  120. </includes>
  121. </resource>
  122. </resources>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. <version>2.5.8</version>
  128. <executions>
  129. <execution>
  130. <goals>
  131. <goal>repackage</goal>
  132. </goals>
  133. </execution>
  134. </executions>
  135. <configuration>
  136. <embeddedLaunchScriptProperties>
  137. <mode>service</mode>
  138. </embeddedLaunchScriptProperties>
  139. <includeSystemScope>true</includeSystemScope>
  140. <fork>true</fork>
  141. <executable>true</executable>
  142. </configuration>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-jar-plugin</artifactId>
  147. <version>3.1.1</version>
  148. <configuration>
  149. <archive>
  150. <manifest>
  151. <addClasspath>true</addClasspath>
  152. <classpathPrefix>lib/</classpathPrefix>
  153. <useUniqueVersions>false</useUniqueVersions>
  154. <mainClass>com.xingxi.XingxiMqServerApplication</mainClass>
  155. </manifest>
  156. <manifestEntries>
  157. <Class-Path>lib/kp-1.0.jar</Class-Path>
  158. </manifestEntries>
  159. </archive>
  160. </configuration>
  161. </plugin>
  162. <!-- <plugin>-->
  163. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  164. <!-- <artifactId>maven-war-plugin</artifactId>-->
  165. <!-- <version>3.0.0</version>-->
  166. <!-- <configuration>-->
  167. <!-- <failOnMissingWebXml>false</failOnMissingWebXml>-->
  168. <!-- <warName>${project.artifactId}</warName>-->
  169. <!-- <archive>-->
  170. <!-- <manifest>-->
  171. <!-- <addClasspath>true</addClasspath>-->
  172. <!-- <classpathPrefix>lib/</classpathPrefix>-->
  173. <!-- <useUniqueVersions>false</useUniqueVersions>-->
  174. <!-- <mainClass>cn.com.wingxi.xingxi.BiandanMqServerApplication</mainClass>-->
  175. <!-- </manifest>-->
  176. <!-- <manifestEntries>-->
  177. <!-- <Class-Path>lib/kp-1.0.jar</Class-Path>-->
  178. <!-- </manifestEntries>-->
  179. <!-- </archive>-->
  180. <!-- </configuration>-->
  181. <!-- </plugin>-->
  182. </plugins>
  183. </build>
  184. <repositories>
  185. <repository>
  186. <id>aliyunmaven</id>
  187. <url>https://maven.aliyun.com/repository/public/</url>
  188. <releases>
  189. <enabled>true</enabled>
  190. </releases>
  191. </repository>
  192. </repositories>
  193. </project>