pom.xml 8.6 KB

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