pom.xml 7.5 KB

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