pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.yihu.hos.resource</groupId>
  7. <artifactId>resource-rest</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <distributionManagement>
  14. <repository>
  15. <id>Releases</id>
  16. <name>Releases</name>
  17. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  18. </repository>
  19. <snapshotRepository>
  20. <id>snapshots</id>
  21. <name>Snapshots</name>
  22. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  23. </snapshotRepository>
  24. </distributionManagement>
  25. <!-- Inherit defaults from Spring Boot -->
  26. <parent>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-parent</artifactId>
  29. <version>1.2.7.RELEASE</version>
  30. </parent>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-jpa</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.data</groupId>
  42. <artifactId>spring-data-mongodb</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mongodb</groupId>
  46. <artifactId>mongo-java-driver</artifactId>
  47. <version>3.1.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>commons-dbutils</groupId>
  51. <artifactId>commons-dbutils</artifactId>
  52. <version>1.6</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>commons-beanutils</groupId>
  56. <artifactId>commons-beanutils</artifactId>
  57. <version>1.9.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-codec</groupId>
  61. <artifactId>commons-codec</artifactId>
  62. <version>1.10</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.commons</groupId>
  66. <artifactId>commons-collections4</artifactId>
  67. <version>4.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>commons-io</groupId>
  71. <artifactId>commons-io</artifactId>
  72. <version>2.4</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-dbcp2</artifactId>
  77. <version>2.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. <version>5.1.37</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>net.sf.ezmorph</groupId>
  86. <artifactId>ezmorph</artifactId>
  87. <version>1.0.6</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. <version>3.8.1</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.quartz-scheduler</groupId>
  97. <artifactId>quartz</artifactId>
  98. <version>2.2.2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework</groupId>
  102. <artifactId>spring-context-support</artifactId>
  103. <version>4.1.1.RELEASE</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.yihu.core</groupId>
  107. <artifactId>ehr-dbhelper</artifactId>
  108. <version>1.1.4</version>
  109. </dependency>
  110. <!--=============httpclient start=============-->
  111. <dependency>
  112. <groupId>org.apache.httpcomponents</groupId>
  113. <artifactId>httpclient</artifactId>
  114. <version>4.5.1</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.httpcomponents</groupId>
  118. <artifactId>httpmime</artifactId>
  119. <version>4.5.1</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.httpcomponents</groupId>
  123. <artifactId>httpcore</artifactId>
  124. <version>4.4.3</version>
  125. </dependency>
  126. <!--=============httpclient end=============-->
  127. <!--=============sfjson start =============-->
  128. <dependency>
  129. <groupId>net.sf.json-lib</groupId>
  130. <artifactId>json-lib</artifactId>
  131. <version>2.4</version>
  132. </dependency>
  133. <!--=============sfjson end =============-->
  134. <dependency>
  135. <groupId>org.jdom</groupId>
  136. <artifactId>jdom</artifactId>
  137. <version>2.0.2</version>
  138. </dependency>
  139. <!--===================swagger start==================-->
  140. <dependency>
  141. <groupId>io.springfox</groupId>
  142. <artifactId>springfox-swagger2</artifactId>
  143. <version>2.1.2</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>io.springfox</groupId>
  147. <artifactId>springfox-swagger-ui</artifactId>
  148. <version>2.1.2</version>
  149. </dependency>
  150. <!--===================swagger end==================-->
  151. <dependency>
  152. <groupId>com.yihu.core</groupId>
  153. <artifactId>core-rpc</artifactId>
  154. <version>2.2.0</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.yihu.core</groupId>
  158. <artifactId>api-config</artifactId>
  159. <version>2.2.0</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.yihu.core</groupId>
  163. <artifactId>core-db</artifactId>
  164. <version>1.3.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.zookeeper</groupId>
  168. <artifactId>zookeeper</artifactId>
  169. <version>3.3.6</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>xom</groupId>
  173. <artifactId>xom</artifactId>
  174. <version>1.1</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.axis2</groupId>
  178. <artifactId>axis2</artifactId>
  179. <version>1.6.3</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.axis2</groupId>
  183. <artifactId>axis2-adb</artifactId>
  184. <version>1.6.3</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.axis2</groupId>
  188. <artifactId>axis2-kernel</artifactId>
  189. <version>1.6.3</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.axis2</groupId>
  193. <artifactId>org.apache.axis2.osgi</artifactId>
  194. <version>1.6.3</version>
  195. </dependency>
  196. </dependencies>
  197. <!-- Package as an executable jar -->
  198. <build>
  199. <plugins>
  200. <plugin>
  201. <groupId>org.springframework.boot</groupId>
  202. <artifactId>spring-boot-maven-plugin</artifactId>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.springframework.boot</groupId>
  206. <artifactId>spring-boot-maven-plugin</artifactId>
  207. </plugin>
  208. <!--打成可以执行的jar包插件-->
  209. <plugin>
  210. <groupId>org.apache.maven.plugins</groupId>
  211. <artifactId>maven-jar-plugin</artifactId>
  212. <version>2.4</version>
  213. <configuration>
  214. <archive>
  215. <manifest>
  216. <addClasspath>true</addClasspath>
  217. <classpathPrefix>lib/</classpathPrefix>
  218. <mainClass>com.yihu.hos.resource.base.App</mainClass>
  219. </manifest>
  220. </archive>
  221. </configuration>
  222. </plugin>
  223. </plugins>
  224. </build>
  225. </project>