pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-web</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-logging</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-data-jpa</artifactId>
  74. </dependency>
  75. <!--<dependency>-->
  76. <!--<groupId>org.springframework.boot</groupId>-->
  77. <!--<artifactId>spring-boot-starter-data-mongodb</artifactId>-->
  78. <!--</dependency>-->
  79. <!--<dependency>-->
  80. <!--<groupId>org.springframework.data</groupId>-->
  81. <!--<artifactId>spring-data-mongodb</artifactId>-->
  82. <!--<version>1.9.2.RELEASE</version>-->
  83. <!--</dependency>-->
  84. <!--<dependency>-->
  85. <!--<groupId>org.mongodb</groupId>-->
  86. <!--<artifactId>mongo-java-driver</artifactId>-->
  87. <!--<version>3.2.2</version>-->
  88. <!--</dependency>-->
  89. <!-- camel start -->
  90. <dependency>
  91. <groupId>org.apache.camel</groupId>
  92. <artifactId>camel-spring-boot</artifactId>
  93. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.camel</groupId>
  97. <artifactId>camel-http4</artifactId>
  98. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.camel</groupId>
  102. <artifactId>camel-jms</artifactId>
  103. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  104. </dependency>
  105. <!-- camel end -->
  106. <!-- database driver start -->
  107. <!--<dependency>-->
  108. <!--<groupId>org.mongodb</groupId>-->
  109. <!--<artifactId>mongo-java-driver</artifactId>-->
  110. <!--<version>3.2.2</version>-->
  111. <!--</dependency>-->
  112. <!-- database driver end -->
  113. <!--<dependency>-->
  114. <!--<groupId>org.apache.activemq</groupId>-->
  115. <!--<artifactId>activemq-all</artifactId>-->
  116. <!--<version>5.13.0</version>-->
  117. <!--</dependency>-->
  118. <dependency>
  119. <groupId>com.yihu.hos</groupId>
  120. <artifactId>hos-core</artifactId>
  121. <version>1.1.1-SNAPSHOT</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.springfox</groupId>
  125. <artifactId>springfox-swagger2</artifactId>
  126. <version>2.4.0</version>
  127. <exclusions>
  128. <exclusion>
  129. <artifactId>classmate</artifactId>
  130. <groupId>com.fasterxml</groupId>
  131. </exclusion>
  132. </exclusions>
  133. </dependency>
  134. <dependency>
  135. <groupId>io.springfox</groupId>
  136. <artifactId>springfox-swagger-ui</artifactId>
  137. <version>2.4.0</version>
  138. </dependency>
  139. <!--=============spring end =============-->
  140. <!-- test start -->
  141. <dependency>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-starter-test</artifactId>
  144. <scope>test</scope>
  145. </dependency>
  146. <!-- test end -->
  147. <dependency>
  148. <groupId>javax.transaction</groupId>
  149. <artifactId>javax.transaction-api</artifactId>
  150. <version>1.2</version>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.apache.maven.plugins</groupId>
  157. <artifactId>maven-compiler-plugin</artifactId>
  158. <configuration>
  159. <source>1.8</source>
  160. <target>1.8</target>
  161. </configuration>
  162. </plugin>
  163. </plugins>
  164. </build>
  165. </project>