pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>net.wanho</groupId>
  6. <artifactId>webservice-client</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>springboots</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.14.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <!--<exclusions>
  27. <exclusion>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-tomcat</artifactId>
  30. </exclusion>
  31. </exclusions>-->
  32. </dependency>
  33. <!--<dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-tomcat</artifactId>
  36. <scope>provided</scope>
  37. </dependency>-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!--oracle驱动-->
  44. <dependency>
  45. <groupId>com.oracle</groupId>
  46. <artifactId>ojdbc6</artifactId>
  47. <version>11.2.0.3</version>
  48. </dependency>
  49. <!--阿里数据库连接池 -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. <version>1.2.4</version>
  54. </dependency>
  55. <!--数据源-->
  56. <!-- <dependency>-->
  57. <!-- <groupId>com.alibaba</groupId>-->
  58. <!-- <artifactId>druid</artifactId>-->
  59. <!-- <version>1.0.11</version>-->
  60. <!-- </dependency>-->
  61. <!--mybatis对springBoot的支持-->
  62. <dependency>
  63. <groupId>org.mybatis.spring.boot</groupId>
  64. <artifactId>mybatis-spring-boot-starter</artifactId>
  65. <version>1.3.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.tomcat.embed</groupId>
  69. <artifactId>tomcat-embed-jasper</artifactId>
  70. </dependency>
  71. <!--<dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  74. </dependency>-->
  75. <dependency>
  76. <groupId>jstl</groupId>
  77. <artifactId>jstl</artifactId>
  78. <version>1.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>javax.servlet</groupId>
  82. <artifactId>servlet-api</artifactId>
  83. <version>2.5</version>
  84. <scope>provided</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>javax.servlet</groupId>
  88. <artifactId>jsp-api</artifactId>
  89. <version>2.0</version>
  90. <scope>provided</scope>
  91. </dependency>
  92. <!--分页插件-->
  93. <dependency>
  94. <groupId>com.github.pagehelper</groupId>
  95. <artifactId>pagehelper-spring-boot-starter</artifactId>
  96. <version>1.2.2</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok</artifactId>
  101. </dependency>
  102. <!-- easyexcel 导出-->
  103. <dependency>
  104. <groupId>com.alibaba</groupId>
  105. <artifactId>easyexcel</artifactId>
  106. <version>3.0.5</version>
  107. </dependency>
  108. <!--解决cglib不兼容问题-->
  109. <dependency>
  110. <groupId>cglib</groupId>
  111. <artifactId>cglib</artifactId>
  112. <version>3.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.alibaba</groupId>
  116. <artifactId>fastjson</artifactId>
  117. <version>1.2.70</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.shibing624</groupId>
  121. <artifactId>similarity</artifactId>
  122. <version>1.1.5</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>net.sf.json-lib</groupId>
  126. <artifactId>json-lib</artifactId>
  127. <version>2.4</version>
  128. <classifier>jdk15</classifier>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-jdbc</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>dom4j</groupId>
  136. <artifactId>dom4j</artifactId>
  137. <version>1.6.1</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.cloud</groupId>
  141. <artifactId>spring-cloud-starter-eureka</artifactId>
  142. <version>2.0.0.M2</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-data-jpa</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-actuator</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.commons</groupId>
  154. <artifactId>commons-lang3</artifactId>
  155. <version>3.4</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>commons-dbcp</groupId>
  159. <artifactId>commons-dbcp</artifactId>
  160. <version>1.4</version><!--$NO-MVN-MAN-VER$ -->
  161. </dependency>
  162. <dependency>
  163. <groupId>commons-pool</groupId>
  164. <artifactId>commons-pool</artifactId>
  165. <version>1.6</version><!--$NO-MVN-MAN-VER$ -->
  166. </dependency>
  167. <dependency>
  168. <groupId>redis.clients</groupId>
  169. <artifactId>jedis</artifactId>
  170. <version>2.9.0</version><!--$NO-MVN-MAN-VER$ -->
  171. </dependency>
  172. <dependency>
  173. <groupId>com.ehl</groupId>
  174. <artifactId>ipfs2</artifactId>
  175. <version>0.2</version>
  176. <scope>system</scope>
  177. <systemPath>${pom.basedir}/src/main/resources/jar/ipfs-0.1.jar</systemPath>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.ActiveMQ</groupId>
  181. <artifactId>Ehl_ActiveMQProducer</artifactId>
  182. <version>0.2</version>
  183. <scope>system</scope>
  184. <systemPath>${pom.basedir}/src/main/resources/jar/Ehl_ActiveMQProducer-0.0.1-SNAPSHOT.jar</systemPath>
  185. </dependency>
  186. </dependencies>
  187. <repositories>
  188. <repository>
  189. <id>jitpack.io</id>
  190. <url>https://jitpack.io</url>
  191. </repository>
  192. </repositories>
  193. <build>
  194. <finalName>hsjtWebservice</finalName>
  195. <plugins>
  196. <plugin>
  197. <groupId>org.springframework.boot</groupId>
  198. <artifactId>spring-boot-maven-plugin</artifactId>
  199. <configuration>
  200. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  201. <includeSystemScope>true</includeSystemScope>
  202. </configuration>
  203. </plugin>
  204. </plugins>
  205. <resources>
  206. <resource>
  207. <directory>src/main/resources</directory>
  208. </resource>
  209. <resource>
  210. <directory>src/main/webapp</directory>
  211. </resource>
  212. </resources>
  213. </build>
  214. </project>