pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>fleetManage</artifactId>
  7. <groupId>io.yichepei</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>io.yichepei.fleet</groupId>
  12. <artifactId>fleet-web-rest</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  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. <zkclient.version>0.10</zkclient.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>io.yichepei.fleetManage</groupId>
  24. <artifactId>fleet-common</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.gexin.platform</groupId>
  29. <artifactId>gexin-rp-sdk-http</artifactId>
  30. <version>4.0.1.17</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.gexin.platform</groupId>
  34. <artifactId>gexin-rp-sdk-template</artifactId>
  35. <version>4.0.0.16</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-aop</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-context-support</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-configuration-processor</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-actuator</artifactId>
  61. </dependency>
  62. <!--springboot上面添加aop-->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-aop</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.platform.spring.boot</groupId>
  69. <artifactId>dubbo-spring-boot-starter</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.101tec</groupId>
  73. <artifactId>zkclient</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.curator</groupId>
  77. <artifactId>curator-framework</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-lang</groupId>
  81. <artifactId>commons-lang</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-fileupload</groupId>
  85. <artifactId>commons-fileupload</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-io</groupId>
  89. <artifactId>commons-io</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>commons-codec</groupId>
  93. <artifactId>commons-codec</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-configuration</groupId>
  97. <artifactId>commons-configuration</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.shiro</groupId>
  101. <artifactId>shiro-core</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.shiro</groupId>
  105. <artifactId>shiro-spring</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.github.axet</groupId>
  109. <artifactId>kaptcha</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>io.jsonwebtoken</groupId>
  113. <artifactId>jjwt</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.alibaba</groupId>
  117. <artifactId>fastjson</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-data-redis</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.session</groupId>
  125. <artifactId>spring-session-data-redis</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.dom4j</groupId>
  129. <artifactId>dom4j</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>commons-httpclient</groupId>
  133. <artifactId>commons-httpclient</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.projectlombok</groupId>
  137. <artifactId>lombok</artifactId>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.codehaus.groovy</groupId>
  141. <artifactId>groovy-all</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>io.springfox</groupId>
  145. <artifactId>springfox-swagger2</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>io.springfox</groupId>
  149. <artifactId>springfox-swagger-ui</artifactId>
  150. </dependency>
  151. <dependency>
  152. <groupId>joda-time</groupId>
  153. <artifactId>joda-time</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>commons-net</groupId>
  157. <artifactId>commons-net</artifactId>
  158. <version>2.2</version>
  159. <scope>compile</scope>
  160. </dependency>
  161. </dependencies>
  162. <repositories>
  163. <repository>
  164. <id>public</id>
  165. <name>nexus</name>
  166. <url>http://nexus.jiaweiguang.com/repository/maven-public/</url>
  167. <releases>
  168. <enabled>true</enabled>
  169. </releases>
  170. </repository>
  171. <repository>
  172. <id>getui-nexus</id>
  173. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  174. </repository>
  175. </repositories>
  176. <pluginRepositories>
  177. <pluginRepository>
  178. <id>public</id>
  179. <name>nexus</name>
  180. <url>http://nexus.jiaweiguang.com/repository/maven-public/</url>
  181. <releases>
  182. <enabled>true</enabled>
  183. </releases>
  184. <snapshots>
  185. <enabled>false</enabled>
  186. </snapshots>
  187. </pluginRepository>
  188. </pluginRepositories>
  189. <!--定义snapshots库和releases库的nexus地址-->
  190. <distributionManagement>
  191. <snapshotRepository>
  192. <id>nexus</id>
  193. <name>Nexus Snapshot</name>
  194. <url>http://nexus.jiaweiguang.com/repository/maven-snapshots/</url>
  195. </snapshotRepository>
  196. </distributionManagement>
  197. <build>
  198. <plugins>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-deploy-plugin</artifactId>
  202. <configuration>
  203. <skip>true</skip>
  204. </configuration>
  205. </plugin>
  206. <plugin>
  207. <groupId>org.springframework.boot</groupId>
  208. <artifactId>spring-boot-maven-plugin</artifactId>
  209. <configuration>
  210. <fork>true</fork>
  211. </configuration>
  212. </plugin>
  213. <!--<plugin>
  214. <groupId>org.codehaus.gmavenplus</groupId>
  215. <artifactId>gmavenplus-plugin</artifactId>
  216. <executions>
  217. <execution>
  218. <goals>
  219. <goal>addSources</goal>
  220. <goal>addTestSources</goal>
  221. <goal>generateStubs</goal>
  222. <goal>compile</goal>
  223. <goal>removeStubs</goal>
  224. </goals>
  225. </execution>
  226. </executions>
  227. <configuration>
  228. <sourceEncoding>UTF-8</sourceEncoding>
  229. <targetBytecode>1.8</targetBytecode>
  230. <invokeDynamic>true</invokeDynamic>
  231. </configuration>
  232. <dependencies>
  233. <dependency>
  234. <groupId>org.codehaus.groovy</groupId>
  235. <artifactId>groovy-all</artifactId>
  236. <version>2.4.7</version>
  237. <scope>runtime</scope>
  238. </dependency>
  239. </dependencies>
  240. </plugin>-->
  241. </plugins>
  242. </build>
  243. </project>