pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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.5.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <camel.version>2.17.1</camel.version>
  18. <spring.version>4.2.5.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. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-camel -->
  118. <dependency>
  119. <groupId>org.apache.activemq</groupId>
  120. <artifactId>activemq-camel</artifactId>
  121. <version>5.13.2</version>
  122. </dependency>
  123. <!-- camel end -->
  124. <dependency>
  125. <groupId>com.yihu.hos</groupId>
  126. <artifactId>hos-core</artifactId>
  127. <version>1.1.1-SNAPSHOT</version>
  128. </dependency>
  129. <!-- swagger start -->
  130. <dependency>
  131. <groupId>io.springfox</groupId>
  132. <artifactId>springfox-swagger2</artifactId>
  133. <version>2.4.0</version>
  134. <exclusions>
  135. <exclusion>
  136. <artifactId>classmate</artifactId>
  137. <groupId>com.fasterxml</groupId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>io.springfox</groupId>
  143. <artifactId>springfox-swagger-ui</artifactId>
  144. <version>2.4.0</version>
  145. </dependency>
  146. <!-- swagger end -->
  147. <dependency>
  148. <groupId>org.apache.activemq</groupId>
  149. <artifactId>activemq-all</artifactId>
  150. <version>5.13.0</version>
  151. <exclusions>
  152. <exclusion>
  153. <groupId>org.slf4j</groupId>
  154. <artifactId>log4j-over-slf4j</artifactId>
  155. </exclusion>
  156. <exclusion>
  157. <groupId>org.slf4j</groupId>
  158. <artifactId>jcl-over-slf4j</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>org.slf4j</groupId>
  162. <artifactId>jul-to-slf4j</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <!-- test start -->
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-starter-test</artifactId>
  170. <scope>test</scope>
  171. </dependency>
  172. <!-- test end -->
  173. <dependency>
  174. <groupId>javax.transaction</groupId>
  175. <artifactId>javax.transaction-api</artifactId>
  176. <version>1.2</version>
  177. </dependency>
  178. </dependencies>
  179. <build>
  180. <plugins>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-compiler-plugin</artifactId>
  184. <configuration>
  185. <source>1.8</source>
  186. <target>1.8</target>
  187. </configuration>
  188. </plugin>
  189. </plugins>
  190. </build>
  191. </project>