pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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. <exclusions>
  64. <exclusion>
  65. <artifactId>jcl-over-slf4j</artifactId>
  66. <groupId>org.slf4j</groupId>
  67. </exclusion>
  68. <exclusion>
  69. <groupId>org.slf4j</groupId>
  70. <artifactId>log4j-over-slf4j</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-data-jpa</artifactId>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.slf4j</groupId>
  80. <artifactId>jcl-over-slf4j</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.data</groupId>
  90. <artifactId>spring-data-mongodb</artifactId>
  91. <version>1.9.2.RELEASE</version>
  92. <exclusions>
  93. <exclusion>
  94. <groupId>org.slf4j</groupId>
  95. <artifactId>jcl-over-slf4j</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.mongodb</groupId>
  101. <artifactId>mongo-java-driver</artifactId>
  102. <version>3.2.2</version>
  103. </dependency>
  104. <!-- camel start -->
  105. <dependency>
  106. <groupId>org.apache.camel</groupId>
  107. <artifactId>camel-spring-boot</artifactId>
  108. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.camel</groupId>
  112. <artifactId>camel-http4</artifactId>
  113. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.camel</groupId>
  117. <artifactId>camel-jms</artifactId>
  118. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.camel</groupId>
  122. <artifactId>camel-cxf</artifactId>
  123. <version>${camel.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.camel</groupId>
  127. <artifactId>camel-quartz</artifactId>
  128. <version>${camel.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.camel</groupId>
  132. <artifactId>camel-quartz2</artifactId>
  133. <version>${camel.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.camel</groupId>
  137. <artifactId>camel-xmljson</artifactId>
  138. <version>${camel.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.camel</groupId>
  142. <artifactId>camel-stream</artifactId>
  143. <version>${camel.version}</version>
  144. </dependency>
  145. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-camel -->
  146. <dependency>
  147. <groupId>org.apache.camel</groupId>
  148. <artifactId>camel-xmljson</artifactId>
  149. <version>${camel.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>xom</groupId>
  153. <artifactId>xom</artifactId>
  154. <version>1.2.5</version>
  155. </dependency>
  156. <!-- camel end -->
  157. <dependency>
  158. <groupId>mysql</groupId>
  159. <artifactId>mysql-connector-java</artifactId>
  160. <version>5.1.37</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.oracle</groupId>
  164. <artifactId>ojdbc6</artifactId>
  165. <version>11.2.0.3.0</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.yihu.hos</groupId>
  169. <artifactId>hos-core</artifactId>
  170. <version>1.1.1-SNAPSHOT</version>
  171. </dependency>
  172. <!-- swagger start -->
  173. <dependency>
  174. <groupId>io.springfox</groupId>
  175. <artifactId>springfox-swagger2</artifactId>
  176. <version>2.4.0</version>
  177. <exclusions>
  178. <exclusion>
  179. <artifactId>classmate</artifactId>
  180. <groupId>com.fasterxml</groupId>
  181. </exclusion>
  182. </exclusions>
  183. </dependency>
  184. <dependency>
  185. <groupId>io.springfox</groupId>
  186. <artifactId>springfox-swagger-ui</artifactId>
  187. <version>2.4.0</version>
  188. </dependency>
  189. <!-- swagger end -->
  190. <dependency>
  191. <groupId>org.apache.activemq</groupId>
  192. <artifactId>activemq-core</artifactId>
  193. <version>5.7.0</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.apache.activemq</groupId>
  197. <artifactId>activemq-pool</artifactId>
  198. <version>5.13.0</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.activemq</groupId>
  202. <artifactId>activemq-camel</artifactId>
  203. <version>5.13.2</version>
  204. </dependency>
  205. <!-- test start -->
  206. <dependency>
  207. <groupId>org.springframework.boot</groupId>
  208. <artifactId>spring-boot-starter-test</artifactId>
  209. <scope>test</scope>
  210. </dependency>
  211. <!-- test end -->
  212. <dependency>
  213. <groupId>javax.transaction</groupId>
  214. <artifactId>javax.transaction-api</artifactId>
  215. <version>1.2</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>com.yihu.core</groupId>
  219. <artifactId>ehr-dbhelper</artifactId>
  220. <version>1.1.9</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.yihu.core</groupId>
  224. <artifactId>html2image</artifactId>
  225. <version>0.9</version>
  226. </dependency>
  227. </dependencies>
  228. <build>
  229. <plugins>
  230. <plugin>
  231. <groupId>org.apache.maven.plugins</groupId>
  232. <artifactId>maven-compiler-plugin</artifactId>
  233. <configuration>
  234. <source>1.8</source>
  235. <target>1.8</target>
  236. </configuration>
  237. </plugin>
  238. </plugins>
  239. </build>
  240. </project>