pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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-http</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.activemq</groupId>
  125. <artifactId>activemq-camel</artifactId>
  126. <version>5.13.2</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.camel</groupId>
  130. <artifactId>camel-xmljson</artifactId>
  131. <version>2.17.1</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>xom</groupId>
  135. <artifactId>xom</artifactId>
  136. <version>1.2.5</version>
  137. </dependency>
  138. <!-- camel end -->
  139. <dependency>
  140. <groupId>com.yihu.hos</groupId>
  141. <artifactId>hos-core</artifactId>
  142. <version>1.1.1-SNAPSHOT</version>
  143. </dependency>
  144. <!-- swagger start -->
  145. <dependency>
  146. <groupId>io.springfox</groupId>
  147. <artifactId>springfox-swagger2</artifactId>
  148. <version>2.4.0</version>
  149. <exclusions>
  150. <exclusion>
  151. <artifactId>classmate</artifactId>
  152. <groupId>com.fasterxml</groupId>
  153. </exclusion>
  154. </exclusions>
  155. </dependency>
  156. <dependency>
  157. <groupId>io.springfox</groupId>
  158. <artifactId>springfox-swagger-ui</artifactId>
  159. <version>2.4.0</version>
  160. </dependency>
  161. <!-- swagger end -->
  162. <dependency>
  163. <groupId>org.apache.activemq</groupId>
  164. <artifactId>activemq-all</artifactId>
  165. <version>5.13.0</version>
  166. </dependency>
  167. <!-- test start -->
  168. <dependency>
  169. <groupId>org.springframework.boot</groupId>
  170. <artifactId>spring-boot-starter-test</artifactId>
  171. <scope>test</scope>
  172. </dependency>
  173. <!-- test end -->
  174. <dependency>
  175. <groupId>javax.transaction</groupId>
  176. <artifactId>javax.transaction-api</artifactId>
  177. <version>1.2</version>
  178. </dependency>
  179. </dependencies>
  180. <build>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-compiler-plugin</artifactId>
  185. <configuration>
  186. <source>1.8</source>
  187. <target>1.8</target>
  188. </configuration>
  189. </plugin>
  190. </plugins>
  191. </build>
  192. </project>