pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.persagy</groupId>
  5. <artifactId>ibms-data-sdk</artifactId>
  6. <version>1.0.0</version>
  7. <repositories>
  8. <repository>
  9. <id>alimaven</id>
  10. <name>aliyun maven</name>
  11. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  12. </repository>
  13. <repository>
  14. <id>mvnrepository</id>
  15. <url>https://mvnrepository.com/</url>
  16. </repository>
  17. <repository>
  18. <id>sonatype-nexus-snapshots</id>
  19. <name>Sonatype Nexus Snapshots</name>
  20. <url>http://oss.sonatype.org/content/repositories/snapshots</url>
  21. </repository>
  22. <repository>
  23. <id>spring-milestones</id>
  24. <name>Spring Milestones</name>
  25. <url>https://repo.spring.io/milestone</url>
  26. </repository>
  27. <repository>
  28. <id>SagaCloud</id>
  29. <name>SagaCloud</name>
  30. <url>http://47.93.33.207:8082/repository/SagaCloud/</url>
  31. <snapshots>
  32. <enabled>true</enabled>
  33. </snapshots>
  34. <releases>
  35. <enabled>true</enabled>
  36. </releases>
  37. </repository>
  38. </repositories>
  39. <parent>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-parent</artifactId>
  42. <version>2.1.1.RELEASE</version>
  43. <relativePath />
  44. </parent>
  45. <properties>
  46. <java.version>1.8</java.version>
  47. </properties>
  48. <dependencies>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-web</artifactId>
  56. <exclusions>
  57. <exclusion>
  58. <artifactId>hibernate-validator</artifactId>
  59. <groupId>org.hibernate.validator</groupId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-websocket</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.springfox</groupId>
  69. <artifactId>springfox-swagger2</artifactId>
  70. <version>2.9.2</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.springfox</groupId>
  74. <artifactId>springfox-swagger-ui</artifactId>
  75. <version>2.9.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>dom4j</groupId>
  79. <artifactId>dom4j</artifactId>
  80. <version>1.6.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>jaxen</groupId>
  84. <artifactId>jaxen</artifactId>
  85. <version>1.1.6</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.reflections</groupId>
  89. <artifactId>reflections</artifactId>
  90. <version>0.9.10</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.antlr</groupId>
  94. <artifactId>antlr-runtime</artifactId>
  95. <version>3.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>fastjson</artifactId>
  100. <version>1.2.70</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>javax.servlet</groupId>
  104. <artifactId>javax.servlet-api</artifactId>
  105. <version>3.1.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>javax.websocket</groupId>
  109. <artifactId>javax.websocket-api</artifactId>
  110. <version>1.1</version>
  111. <scope>provided</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.java-websocket</groupId>
  115. <artifactId>Java-WebSocket</artifactId>
  116. <version>1.3.8</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.antlr</groupId>
  120. <artifactId>antlr-runtime</artifactId>
  121. <version>3.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.httpcomponents</groupId>
  125. <artifactId>httpclient</artifactId>
  126. <version>4.2.5</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.httpcomponents</groupId>
  130. <artifactId>httpcore</artifactId>
  131. <version>4.2.5</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.poi</groupId>
  135. <artifactId>poi</artifactId>
  136. <version>3.9</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi-ooxml</artifactId>
  141. <version>3.9</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.projectlombok</groupId>
  145. <artifactId>lombok</artifactId>
  146. <optional>true</optional>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.mina</groupId>
  150. <artifactId>mina-core</artifactId>
  151. <version>2.0.7</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.persagy</groupId>
  155. <artifactId>ems-com</artifactId>
  156. <version>1.7.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.persagy</groupId>
  160. <artifactId>ems-websocket-manager</artifactId>
  161. <version>1.0.0</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.projectlombok</groupId>
  165. <artifactId>lombok</artifactId>
  166. <version>1.18.0</version>
  167. </dependency>
  168. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  169. <dependency>
  170. <groupId>org.slf4j</groupId>
  171. <artifactId>slf4j-api</artifactId>
  172. <version>1.7.25</version>
  173. </dependency>
  174. <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
  175. <dependency>
  176. <groupId>ch.qos.logback</groupId>
  177. <artifactId>logback-classic</artifactId>
  178. <version>1.2.3</version>
  179. </dependency>
  180. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  181. <dependency>
  182. <groupId>org.junit.jupiter</groupId>
  183. <artifactId>junit-jupiter-api</artifactId>
  184. <version>5.2.0</version>
  185. <scope>test</scope>
  186. </dependency>
  187. </dependencies>
  188. <build>
  189. <resources>
  190. <resource>
  191. <directory>src/main/resources</directory>
  192. <targetPath>${project.build.directory}/classes</targetPath>
  193. </resource>
  194. </resources>
  195. <plugins>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-compiler-plugin</artifactId>
  199. <version>2.4</version>
  200. <configuration>
  201. <source>1.8</source>
  202. <target>1.8</target>
  203. <encoding>gbk</encoding>
  204. </configuration>
  205. </plugin>
  206. <plugin>
  207. <groupId>org.apache.maven.plugins</groupId>
  208. <artifactId>maven-jar-plugin</artifactId>
  209. <version>2.4</version>
  210. <configuration>
  211. <excludes>
  212. <exclude>*.properties</exclude>
  213. <exclude>*.xml</exclude>
  214. <exclude>*.json</exclude>
  215. </excludes>
  216. <archive>
  217. <manifest>
  218. <addClasspath>true</addClasspath>
  219. <mainClass>com.persagy.ibms.data.sdk.service.Application_ibms_data_sdk</mainClass>
  220. </manifest>
  221. </archive>
  222. </configuration>
  223. </plugin>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-dependency-plugin</artifactId>
  227. <version>2.4</version>
  228. <executions>
  229. <execution>
  230. <id>copy</id>
  231. <phase>package</phase>
  232. <goals>
  233. <goal>copy-dependencies</goal>
  234. </goals>
  235. <configuration>
  236. <outputDirectory>
  237. ${project.build.directory}
  238. </outputDirectory>
  239. </configuration>
  240. </execution>
  241. </executions>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-resources-plugin</artifactId>
  246. <version>2.4</version>
  247. <configuration>
  248. <encoding>UTF-8</encoding>
  249. </configuration>
  250. </plugin>
  251. </plugins>
  252. </build>
  253. </project>