pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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-schedule-rest</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <!-- 系统api -->
  17. <dependency>
  18. <groupId>io.platform.sailun.allsteel</groupId>
  19. <artifactId>sailun-allsteel-sys-api</artifactId>
  20. <version>1.0-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>io.platform.sailun.allsteel</groupId>
  24. <artifactId>saillun-allsteel-bus-api</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.platform.sailun.allsteel</groupId>
  29. <artifactId>sailun-allsteel-common</artifactId>
  30. <version>1.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-aop</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context-support</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-configuration-processor</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-actuator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>io.platform.spring.boot</groupId>
  59. <artifactId>dubbo-spring-boot-starter</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.101tec</groupId>
  63. <artifactId>zkclient</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.curator</groupId>
  67. <artifactId>curator-framework</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>commons-lang</groupId>
  71. <artifactId>commons-lang</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-fileupload</groupId>
  75. <artifactId>commons-fileupload</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-io</groupId>
  79. <artifactId>commons-io</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-codec</groupId>
  83. <artifactId>commons-codec</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-configuration</groupId>
  87. <artifactId>commons-configuration</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.github.axet</groupId>
  91. <artifactId>kaptcha</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.jsonwebtoken</groupId>
  95. <artifactId>jjwt</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>fastjson</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-data-redis</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.dom4j</groupId>
  107. <artifactId>dom4j</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-httpclient</groupId>
  111. <artifactId>commons-httpclient</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.projectlombok</groupId>
  115. <artifactId>lombok</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>joda-time</groupId>
  119. <artifactId>joda-time</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-net</groupId>
  123. <artifactId>commons-net</artifactId>
  124. <version>2.2</version>
  125. <scope>compile</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>cn.hutool</groupId>
  129. <artifactId>hutool-all</artifactId>
  130. </dependency>
  131. </dependencies>
  132. <repositories>
  133. <repository>
  134. <id>public</id>
  135. <name>nexus</name>
  136. <url>http://nexus.jiaweiguang.com/repository/maven-public/</url>
  137. <releases>
  138. <enabled>true</enabled>
  139. </releases>
  140. </repository>
  141. <repository>
  142. <id>getui-nexus</id>
  143. <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
  144. </repository>
  145. </repositories>
  146. <pluginRepositories>
  147. <pluginRepository>
  148. <id>public</id>
  149. <name>nexus</name>
  150. <url>http://nexus.jiaweiguang.com/repository/maven-public/</url>
  151. <releases>
  152. <enabled>true</enabled>
  153. </releases>
  154. <snapshots>
  155. <enabled>false</enabled>
  156. </snapshots>
  157. </pluginRepository>
  158. </pluginRepositories>
  159. <!--定义snapshots库和releases库的nexus地址-->
  160. <distributionManagement>
  161. <snapshotRepository>
  162. <id>nexus</id>
  163. <name>Nexus Snapshot</name>
  164. <url>http://nexus.jiaweiguang.com/repository/maven-snapshots/</url>
  165. </snapshotRepository>
  166. </distributionManagement>
  167. <build>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-deploy-plugin</artifactId>
  172. <configuration>
  173. <skip>true</skip>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-maven-plugin</artifactId>
  179. <configuration>
  180. <fork>true</fork>
  181. </configuration>
  182. </plugin>
  183. </plugins>
  184. </build>
  185. </project>