pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-camel -->
  98. <dependency>
  99. <groupId>org.apache.activemq</groupId>
  100. <artifactId>activemq-camel</artifactId>
  101. <version>5.13.2</version>
  102. </dependency>
  103. <!-- camel end -->
  104. <dependency>
  105. <groupId>com.yihu.hos</groupId>
  106. <artifactId>hos-core</artifactId>
  107. <version>1.1.1-SNAPSHOT</version>
  108. </dependency>
  109. <!-- swagger start -->
  110. <dependency>
  111. <groupId>io.springfox</groupId>
  112. <artifactId>springfox-swagger2</artifactId>
  113. <version>2.4.0</version>
  114. <exclusions>
  115. <exclusion>
  116. <artifactId>classmate</artifactId>
  117. <groupId>com.fasterxml</groupId>
  118. </exclusion>
  119. </exclusions>
  120. </dependency>
  121. <dependency>
  122. <groupId>io.springfox</groupId>
  123. <artifactId>springfox-swagger-ui</artifactId>
  124. <version>2.4.0</version>
  125. </dependency>
  126. <!-- swagger end -->
  127. <dependency>
  128. <groupId>org.apache.activemq</groupId>
  129. <artifactId>activemq-all</artifactId>
  130. <version>5.13.0</version>
  131. <exclusions>
  132. <exclusion>
  133. <groupId>org.slf4j</groupId>
  134. <artifactId>log4j-over-slf4j</artifactId>
  135. </exclusion>
  136. <exclusion>
  137. <groupId>org.slf4j</groupId>
  138. <artifactId>jcl-over-slf4j</artifactId>
  139. </exclusion>
  140. <exclusion>
  141. <groupId>org.slf4j</groupId>
  142. <artifactId>jul-to-slf4j</artifactId>
  143. </exclusion>
  144. </exclusions>
  145. </dependency>
  146. <!-- test start -->
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-starter-test</artifactId>
  150. <scope>test</scope>
  151. </dependency>
  152. <!-- test end -->
  153. <dependency>
  154. <groupId>javax.transaction</groupId>
  155. <artifactId>javax.transaction-api</artifactId>
  156. <version>1.2</version>
  157. </dependency>
  158. </dependencies>
  159. <build>
  160. <plugins>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-compiler-plugin</artifactId>
  164. <configuration>
  165. <source>1.8</source>
  166. <target>1.8</target>
  167. </configuration>
  168. </plugin>
  169. </plugins>
  170. </build>
  171. </project>