pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. <artifactId>hos-web-camel-dependencies</artifactId>
  7. <version>1.3.0</version>
  8. <packaging>pom</packaging>
  9. <parent>
  10. <groupId>com.yihu.hos</groupId>
  11. <artifactId>hos-web-framework-dependencies</artifactId>
  12. <version>1.3.0</version>
  13. <relativePath>../hos-web-framework-dependencies</relativePath><!-- lookup parent from repository -->
  14. </parent>
  15. <properties>
  16. <camel.version>2.18.0</camel.version>
  17. <camel.osgi.export.pkg>org.apache.camel.dataformat.xmljson.*</camel.osgi.export.pkg>
  18. <camel.osgi.export.service>org.apache.camel.spi.DataFormatResolver;dataformat=xmljson
  19. </camel.osgi.export.service>
  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. <!-- camel start -->
  60. <dependency>
  61. <groupId>org.apache.camel</groupId>
  62. <artifactId>camel-core</artifactId>
  63. <version>${camel.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.camel</groupId>
  67. <artifactId>camel-spring-boot</artifactId>
  68. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.camel</groupId>
  72. <artifactId>camel-http4</artifactId>
  73. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.camel</groupId>
  77. <artifactId>camel-jms</artifactId>
  78. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.camel</groupId>
  82. <artifactId>camel-cxf</artifactId>
  83. <version>${camel.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.camel</groupId>
  87. <artifactId>camel-quartz</artifactId>
  88. <version>${camel.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.camel</groupId>
  92. <artifactId>camel-quartz2</artifactId>
  93. <version>${camel.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.camel</groupId>
  97. <artifactId>camel-xmljson</artifactId>
  98. <version>${camel.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.camel</groupId>
  102. <artifactId>camel-stream</artifactId>
  103. <version>${camel.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.camel</groupId>
  107. <artifactId>camel-jetty</artifactId>
  108. <version>${camel.version}</version> <!-- use the same version as your Camel core version -->
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.camel</groupId>
  112. <artifactId>camel-mongodb</artifactId>
  113. <version>${camel.version}</version>
  114. <!-- use the same version as your Camel core version -->
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-camel -->
  117. <dependency>
  118. <groupId>xom</groupId>
  119. <artifactId>xom</artifactId>
  120. <version>1.2.5</version>
  121. </dependency>
  122. <!-- camel end -->
  123. </dependencies>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-compiler-plugin</artifactId>
  129. <configuration>
  130. <source>1.8</source>
  131. <target>1.8</target>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>