pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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>sailun-allsteel</artifactId>
  7. <groupId>io.platform</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>io.platform.sailun.allsteel</groupId>
  12. <artifactId>sailun-allsteel-app-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.platform.sailun.allsteel</groupId>
  24. <artifactId>sailun-allsteel-common</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.platform.sailun.allsteel</groupId>
  29. <artifactId>saillun-allsteel-bus-api</artifactId>
  30. <version>1.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.platform.sailun.allsteel</groupId>
  34. <artifactId>sailun-allsteel-sys-api</artifactId>
  35. <version>1.0-SNAPSHOT</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. <dependency>
  63. <groupId>io.platform.spring.boot</groupId>
  64. <artifactId>dubbo-spring-boot-starter</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.101tec</groupId>
  68. <artifactId>zkclient</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.curator</groupId>
  72. <artifactId>curator-framework</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-lang</groupId>
  76. <artifactId>commons-lang</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-fileupload</groupId>
  80. <artifactId>commons-fileupload</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-io</groupId>
  84. <artifactId>commons-io</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>commons-codec</groupId>
  88. <artifactId>commons-codec</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>commons-configuration</groupId>
  92. <artifactId>commons-configuration</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.shiro</groupId>
  96. <artifactId>shiro-core</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.shiro</groupId>
  100. <artifactId>shiro-spring</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.github.axet</groupId>
  104. <artifactId>kaptcha</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>io.jsonwebtoken</groupId>
  108. <artifactId>jjwt</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alibaba</groupId>
  112. <artifactId>fastjson</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-data-redis</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.session</groupId>
  120. <artifactId>spring-session-data-redis</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.dom4j</groupId>
  124. <artifactId>dom4j</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-httpclient</groupId>
  128. <artifactId>commons-httpclient</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.projectlombok</groupId>
  132. <artifactId>lombok</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.codehaus.groovy</groupId>
  136. <artifactId>groovy-all</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-net</groupId>
  140. <artifactId>commons-net</artifactId>
  141. <version>2.2</version>
  142. <scope>compile</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>io.springfox</groupId>
  146. <artifactId>springfox-swagger2</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>io.springfox</groupId>
  150. <artifactId>springfox-swagger-ui</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>joda-time</groupId>
  154. <artifactId>joda-time</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>cn.hutool</groupId>
  158. <artifactId>hutool-all</artifactId>
  159. </dependency>
  160. <!-- google二维码生成 -->
  161. <dependency>
  162. <groupId>com.google.zxing</groupId>
  163. <artifactId>core</artifactId>
  164. <version>3.3.3</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.google.zxing</groupId>
  168. <artifactId>javase</artifactId>
  169. <version>3.3.3</version>
  170. </dependency>
  171. <!-- 分页助手 -->
  172. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
  173. <dependency>
  174. <groupId>com.github.pagehelper</groupId>
  175. <artifactId>pagehelper</artifactId>
  176. <version>5.1.10</version>
  177. </dependency>
  178. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
  179. <dependency>
  180. <groupId>org.mybatis</groupId>
  181. <artifactId>mybatis</artifactId>
  182. <version>3.4.6</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.webjars.bower</groupId>
  186. <artifactId>jquery-i18n-properties</artifactId>
  187. <version>1.2.7</version>
  188. </dependency>
  189. </dependencies>
  190. <repositories>
  191. <repository>
  192. <id>public</id>
  193. <name>nexus</name>
  194. <url>http://nexus.jiaweiguang.com/repository/maven-public/</url>
  195. <releases>
  196. <enabled>true</enabled>
  197. </releases>
  198. </repository>
  199. </repositories>
  200. <pluginRepositories>
  201. <pluginRepository>
  202. <id>public</id>
  203. <name>nexus</name>
  204. <url>http://nexus.jiaweiguang.com/repository/maven-public/</url>
  205. <releases>
  206. <enabled>true</enabled>
  207. </releases>
  208. <snapshots>
  209. <enabled>false</enabled>
  210. </snapshots>
  211. </pluginRepository>
  212. </pluginRepositories>
  213. <!--定义snapshots库和releases库的nexus地址-->
  214. <distributionManagement>
  215. <snapshotRepository>
  216. <id>nexus</id>
  217. <name>Nexus Snapshot</name>
  218. <url>http://nexus.jiaweiguang.com/repository/maven-snapshots/</url>
  219. </snapshotRepository>
  220. </distributionManagement>
  221. <build>
  222. <plugins>
  223. <plugin>
  224. <groupId>org.apache.maven.plugins</groupId>
  225. <artifactId>maven-deploy-plugin</artifactId>
  226. <configuration>
  227. <skip>true</skip>
  228. </configuration>
  229. </plugin>
  230. <plugin>
  231. <groupId>org.springframework.boot</groupId>
  232. <artifactId>spring-boot-maven-plugin</artifactId>
  233. <configuration>
  234. <fork>true</fork>
  235. </configuration>
  236. </plugin>
  237. <!--<plugin>
  238. <groupId>org.codehaus.gmavenplus</groupId>
  239. <artifactId>gmavenplus-plugin</artifactId>
  240. <executions>
  241. <execution>
  242. <goals>
  243. <goal>addSources</goal>
  244. <goal>addTestSources</goal>
  245. <goal>generateStubs</goal>
  246. <goal>compile</goal>
  247. <goal>removeStubs</goal>
  248. </goals>
  249. </execution>
  250. </executions>
  251. <configuration>
  252. <sourceEncoding>UTF-8</sourceEncoding>
  253. <targetBytecode>1.8</targetBytecode>
  254. <invokeDynamic>true</invokeDynamic>
  255. </configuration>
  256. <dependencies>
  257. <dependency>
  258. <groupId>org.codehaus.groovy</groupId>
  259. <artifactId>groovy-all</artifactId>
  260. <version>2.4.7</version>
  261. <scope>runtime</scope>
  262. </dependency>
  263. </dependencies>
  264. </plugin>-->
  265. </plugins>
  266. </build>
  267. </project>