pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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</groupId>
  7. <artifactId>hos-web-framework-dependencies</artifactId>
  8. <version>1.1.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.4.0.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <camel.version>2.17.1</camel.version>
  18. <spring.version>4.3.2.RELEASE</spring.version>
  19. <hibernate.version>5.0.9.Final</hibernate.version>
  20. <!--<spring.security.version>4.0.2.RELEASE</spring.security.version>-->
  21. </properties>
  22. <pluginRepositories>
  23. <pluginRepository>
  24. <id>pluginCentral</id>
  25. <name>pluginCentral</name>
  26. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  27. </pluginRepository>
  28. <pluginRepository>
  29. <id>pluginReleases</id>
  30. <name>pluginReleases</name>
  31. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  32. </pluginRepository>
  33. </pluginRepositories>
  34. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  35. <distributionManagement>
  36. <repository>
  37. <id>Releases</id>
  38. <name>Releases</name>
  39. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  40. </repository>
  41. <snapshotRepository>
  42. <id>snapshots</id>
  43. <name>Snapshots</name>
  44. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  45. </snapshotRepository>
  46. </distributionManagement>
  47. <repositories>
  48. <repository>
  49. <id>repositoryCentral</id>
  50. <name>repositoryCentral</name>
  51. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  52. </repository>
  53. <repository>
  54. <id>repositoryReleases</id>
  55. <name>repositoryReleases</name>
  56. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  57. </repository>
  58. </repositories>
  59. <dependencies>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-data-jpa</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.data</groupId>
  74. <artifactId>spring-data-mongodb</artifactId>
  75. <version>1.9.2.RELEASE</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.mongodb</groupId>
  79. <artifactId>mongo-java-driver</artifactId>
  80. <version>3.2.2</version>
  81. </dependency>
  82. <!-- camel start -->
  83. <dependency>
  84. <groupId>org.apache.camel</groupId>
  85. <artifactId>camel-spring-boot</artifactId>
  86. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.camel</groupId>
  90. <artifactId>camel-http4</artifactId>
  91. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.camel</groupId>
  95. <artifactId>camel-jms</artifactId>
  96. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.camel</groupId>
  100. <artifactId>camel-cxf</artifactId>
  101. <version>${camel.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.camel</groupId>
  105. <artifactId>camel-quartz</artifactId>
  106. <version>${camel.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.camel</groupId>
  110. <artifactId>camel-quartz2</artifactId>
  111. <version>${camel.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.camel</groupId>
  115. <artifactId>camel-xmljson</artifactId>
  116. <version>${camel.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.camel</groupId>
  120. <artifactId>camel-stream</artifactId>
  121. <version>${camel.version}</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-camel -->
  124. <dependency>
  125. <groupId>org.apache.camel</groupId>
  126. <artifactId>camel-xmljson</artifactId>
  127. <version>${camel.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>xom</groupId>
  131. <artifactId>xom</artifactId>
  132. <version>1.2.5</version>
  133. </dependency>
  134. <!-- camel end -->
  135. <dependency>
  136. <groupId>mysql</groupId>
  137. <artifactId>mysql-connector-java</artifactId>
  138. <version>5.1.37</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.oracle</groupId>
  142. <artifactId>ojdbc6</artifactId>
  143. <version>11.2.0.3.0</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.yihu.hos</groupId>
  147. <artifactId>hos-core</artifactId>
  148. <version>1.1.1-SNAPSHOT</version>
  149. </dependency>
  150. <!-- swagger start -->
  151. <dependency>
  152. <groupId>io.springfox</groupId>
  153. <artifactId>springfox-swagger2</artifactId>
  154. <version>2.4.0</version>
  155. <exclusions>
  156. <exclusion>
  157. <artifactId>classmate</artifactId>
  158. <groupId>com.fasterxml</groupId>
  159. </exclusion>
  160. </exclusions>
  161. </dependency>
  162. <dependency>
  163. <groupId>io.springfox</groupId>
  164. <artifactId>springfox-swagger-ui</artifactId>
  165. <version>2.4.0</version>
  166. </dependency>
  167. <!-- swagger end -->
  168. <dependency>
  169. <groupId>org.apache.activemq</groupId>
  170. <artifactId>activemq-core</artifactId>
  171. <version>5.7.0</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.apache.activemq</groupId>
  175. <artifactId>activemq-pool</artifactId>
  176. <version>5.13.0</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.apache.activemq</groupId>
  180. <artifactId>activemq-camel</artifactId>
  181. <version>5.13.2</version>
  182. </dependency>
  183. <!-- test start -->
  184. <dependency>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-starter-test</artifactId>
  187. <scope>test</scope>
  188. </dependency>
  189. <!-- test end -->
  190. <dependency>
  191. <groupId>javax.transaction</groupId>
  192. <artifactId>javax.transaction-api</artifactId>
  193. <version>1.2</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.yihu.core</groupId>
  197. <artifactId>ehr-dbhelper</artifactId>
  198. <version>1.1.9</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.yihu.core</groupId>
  202. <artifactId>html2image</artifactId>
  203. <version>0.9</version>
  204. </dependency>
  205. </dependencies>
  206. <build>
  207. <plugins>
  208. <plugin>
  209. <groupId>org.apache.maven.plugins</groupId>
  210. <artifactId>maven-compiler-plugin</artifactId>
  211. <configuration>
  212. <source>1.8</source>
  213. <target>1.8</target>
  214. </configuration>
  215. </plugin>
  216. </plugins>
  217. </build>
  218. </project>