pom.xml 10.0 KB

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