pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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. <groupId>com.ydw.yunbuyer.web.pm</groupId>
  6. <artifactId>krock-web-pm</artifactId>
  7. <version>0.0.1</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.0.4.RELEASE</version>
  13. <relativePath/> <!-- lookup parent from repository -->
  14. </parent>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>1.8</java.version>
  19. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  20. </properties>
  21. <dependencies>
  22. <!-- https://mvnrepository.com/artifact/com.tmsps/ne4Weixin -->
  23. <dependency>
  24. <groupId>com.tmsps</groupId>
  25. <artifactId>ne4Weixin</artifactId>
  26. <version>0.8.1</version>
  27. </dependency>
  28. <!-- common Utils -->
  29. <dependency>
  30. <groupId>com.ydw.yunbuyer.common</groupId>
  31. <artifactId>krock-core-common</artifactId>
  32. <version>0.0.1</version>
  33. </dependency>
  34. <!-- krock-api-user -->
  35. <dependency>
  36. <groupId>com.ydw.yunbuyer.api</groupId>
  37. <artifactId>krock-api-user</artifactId>
  38. <version>0.0.1</version>
  39. </dependency>
  40. <!-- krock-api-pm-office -->
  41. <dependency>
  42. <groupId>com.ydw.yunbuyer.api</groupId>
  43. <artifactId>krock-api-pm-office</artifactId>
  44. <version>0.0.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.ydw.yunbuyer.api</groupId>
  48. <artifactId>krock-api-pm</artifactId>
  49. <version>0.0.1</version>
  50. </dependency>
  51. <!-- krock-api-system -->
  52. <dependency>
  53. <groupId>com.ydw.yunbuyer.api</groupId>
  54. <artifactId>krock-api-system</artifactId>
  55. <version>0.0.1</version>
  56. </dependency>
  57. <!-- Eureka -->
  58. <dependency>
  59. <groupId>org.springframework.cloud</groupId>
  60. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  61. </dependency>
  62. <!-- Feign客户端 -->
  63. <dependency>
  64. <groupId>org.springframework.cloud</groupId>
  65. <artifactId>spring-cloud-starter-openfeign</artifactId>
  66. </dependency>
  67. <!-- SpringMVC -->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-jdbc</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-webmvc</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-tx</artifactId>
  83. </dependency>
  84. <!-- 集成 Redis -->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-data-redis</artifactId>
  88. </dependency>
  89. <!-- 阿里云mail -->
  90. <dependency>
  91. <groupId>com.aliyun</groupId>
  92. <artifactId>aliyun-java-sdk-core</artifactId>
  93. <version>3.2.9</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.aliyun</groupId>
  97. <artifactId>aliyun-java-sdk-dm</artifactId>
  98. <version>2.0.0-rc2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.aliyun</groupId>
  102. <artifactId>aliyun-java-sdk-live</artifactId>
  103. <version>2.7.0</version>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  106. <!-- websocket -->
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-websocket</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-httpclient</groupId>
  113. <artifactId>commons-httpclient</artifactId>
  114. <version>3.0.1</version>
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  117. <dependency>
  118. <groupId>dom4j</groupId>
  119. <artifactId>dom4j</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>mysql</groupId>
  123. <artifactId>mysql-connector-java</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.alibaba</groupId>
  127. <artifactId>druid</artifactId>
  128. <version>1.1.10</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-test</artifactId>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-starter-undertow</artifactId>
  138. </dependency>
  139. <!-- 解决导入的依赖冲突 -->
  140. <dependency>
  141. <groupId>com.google.guava</groupId>
  142. <artifactId>guava</artifactId>
  143. <version>20.0</version>
  144. </dependency>
  145. </dependencies>
  146. <dependencyManagement>
  147. <dependencies>
  148. <dependency>
  149. <groupId>org.springframework.cloud</groupId>
  150. <artifactId>spring-cloud-dependencies</artifactId>
  151. <version>${spring-cloud.version}</version>
  152. <type>pom</type>
  153. <scope>import</scope>
  154. </dependency>
  155. </dependencies>
  156. </dependencyManagement>
  157. <build>
  158. <!-- mvn package -DskipTests -->
  159. <plugins>
  160. <plugin>
  161. <groupId>org.springframework.boot</groupId>
  162. <artifactId>spring-boot-maven-plugin</artifactId>
  163. </plugin>
  164. <plugin>
  165. <groupId>org.apache.maven.plugins</groupId>
  166. <artifactId>maven-jar-plugin</artifactId>
  167. <configuration>
  168. <archive>
  169. <manifest>
  170. <addClasspath>true</addClasspath>
  171. <mainClass>com.ydw.yunbuyer.web.pm.KrockWebPMApplication</mainClass>
  172. <classpathPrefix>lib/</classpathPrefix>
  173. </manifest>
  174. </archive>
  175. </configuration>
  176. </plugin>
  177. </plugins>
  178. <defaultGoal>compile</defaultGoal>
  179. </build>
  180. </project>