pom.xml 8.2 KB

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