pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  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-camel-parent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.3.0</version>
  10. <properties>
  11. <activemq-version>5.14.4</activemq-version>
  12. <activemq-karaf-version>5.13.5</activemq-karaf-version>
  13. <camel-version>2.18.3</camel-version>
  14. <cxf-version>3.1.9</cxf-version>
  15. <hawtio-version>1.5.0</hawtio-version>
  16. <bundle-plugin-version>2.3.7</bundle-plugin-version>
  17. <commons-dbcp2-version>2.1.1</commons-dbcp2-version>
  18. <deltaspike-version>1.7.2</deltaspike-version>
  19. <hystrix-version>1.5.9</hystrix-version>
  20. <jackson-version>2.8.5</jackson-version>
  21. <javax-mail-version>1.5.5</javax-mail-version>
  22. <jolokia-version>1.3.5</jolokia-version>
  23. <jetty-plugin-version>8.1.17.v20150415</jetty-plugin-version>
  24. <jetty9-plugin-version>9.2.19.v20160908</jetty9-plugin-version>
  25. <junit-version>4.12</junit-version>
  26. <karaf-version>4.0.8</karaf-version>
  27. <log4j-version>1.2.17</log4j-version>
  28. <!-- TODO need to update to 3.2.0 for everything like in chapter19/hawtio-custom-plugin -->
  29. <maven-bundle-plugin-version>2.3.7</maven-bundle-plugin-version>
  30. <mock-javamail-version>1.9</mock-javamail-version>
  31. <slf4j-version>1.7.21</slf4j-version>
  32. <spring-version>4.3.7.RELEASE</spring-version>
  33. <spring-boot-version>1.4.2.RELEASE</spring-boot-version>
  34. <swagger-version>1.5.12</swagger-version>
  35. <xbean-version>3.18</xbean-version>
  36. <verx-version>3.3.3</verx-version>
  37. <weld-version>2.4.2.Final</weld-version>
  38. <wildfly-swarm-version>2017.3.3</wildfly-swarm-version>
  39. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  40. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  41. </properties>
  42. <build>
  43. <defaultGoal>install</defaultGoal>
  44. <pluginManagement>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.3</version>
  50. <configuration>
  51. <source>1.8</source>
  52. <target>1.8</target>
  53. <maxmem>512M</maxmem>
  54. <showDeprecation>true</showDeprecation>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-eclipse-plugin</artifactId>
  60. <version>2.9</version>
  61. <configuration>
  62. <downloadSources>true</downloadSources>
  63. <downloadJavadocs>false</downloadJavadocs>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-resources-plugin</artifactId>
  69. <version>2.4.3</version>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-clean-plugin</artifactId>
  74. <version>2.4.1</version>
  75. <configuration>
  76. <filesets>
  77. <fileset>
  78. <directory>activemq-data</directory>
  79. </fileset>
  80. </filesets>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-install-plugin</artifactId>
  86. <version>2.5.2</version>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-remote-resources-plugin</artifactId>
  90. <version>1.5</version>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-jar-plugin</artifactId>
  95. <version>2.6</version>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-dependency-plugin</artifactId>
  100. <version>2.10</version>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-surefire-plugin</artifactId>
  105. <version>2.18.1</version>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-checkstyle-plugin</artifactId>
  110. <version>2.15</version>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.codehaus.mojo</groupId>
  114. <artifactId>exec-maven-plugin</artifactId>
  115. <version>1.4.0</version>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.apache.camel</groupId>
  119. <artifactId>camel-maven-plugin</artifactId>
  120. <version>${camel-version}</version>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.apache.camel</groupId>
  124. <artifactId>camel-package-maven-plugin</artifactId>
  125. <version>${camel-version}</version>
  126. </plugin>
  127. <plugin>
  128. <groupId>io.hawt</groupId>
  129. <artifactId>hawtio-maven-plugin</artifactId>
  130. <version>${hawtio-version}</version>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.felix</groupId>
  134. <artifactId>maven-bundle-plugin</artifactId>
  135. <version>${bundle-plugin-version}</version>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.camel</groupId>
  139. <artifactId>camel-api-component-maven-plugin</artifactId>
  140. <version>${camel-version}</version>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.codehaus.mojo</groupId>
  144. <artifactId>build-helper-maven-plugin</artifactId>
  145. <version>1.10</version>
  146. </plugin>
  147. </plugins>
  148. </pluginManagement>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.apache.maven.plugins</groupId>
  152. <artifactId>maven-surefire-plugin</artifactId>
  153. <configuration>
  154. <childDelegation>false</childDelegation>
  155. <useFile>true</useFile>
  156. <failIfNoTests>false</failIfNoTests>
  157. <includes>
  158. <include>**/*Test.java</include>
  159. </includes>
  160. </configuration>
  161. </plugin>
  162. </plugins>
  163. </build>
  164. <dependencyManagement>
  165. <dependencies>
  166. <!-- Camel -->
  167. <dependency>
  168. <groupId>org.apache.camel</groupId>
  169. <artifactId>camel-parent</artifactId>
  170. <version>${camel-version}</version>
  171. <scope>import</scope>
  172. <type>pom</type>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.camel</groupId>
  176. <artifactId>spi-annotations</artifactId>
  177. <version>${camel-version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.camel</groupId>
  181. <artifactId>camel-jetty</artifactId>
  182. <version>${camel-version}</version>
  183. </dependency>
  184. <!-- ActiveMQ -->
  185. <dependency>
  186. <groupId>org.apache.activemq</groupId>
  187. <artifactId>activemq-all</artifactId>
  188. <version>${activemq-version}</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.apache.activemq</groupId>
  192. <artifactId>activemq-camel</artifactId>
  193. <version>${activemq-version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.apache.activemq</groupId>
  197. <artifactId>activemq-pool</artifactId>
  198. <version>${activemq-version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.xbean</groupId>
  202. <artifactId>xbean-spring</artifactId>
  203. <version>${xbean-version}</version>
  204. <exclusions>
  205. <exclusion>
  206. <groupId>org.springframework</groupId>
  207. <artifactId>spring</artifactId>
  208. </exclusion>
  209. </exclusions>
  210. </dependency>
  211. <!-- Logging -->
  212. <dependency>
  213. <groupId>org.slf4j</groupId>
  214. <artifactId>slf4j-api</artifactId>
  215. <version>${slf4j-version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.slf4j</groupId>
  219. <artifactId>slf4j-log4j12</artifactId>
  220. <version>${slf4j-version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>log4j</groupId>
  224. <artifactId>log4j</artifactId>
  225. <version>${log4j-version}</version>
  226. </dependency>
  227. <!-- Testing -->
  228. <dependency>
  229. <groupId>junit</groupId>
  230. <artifactId>junit</artifactId>
  231. <version>${junit-version}</version>
  232. </dependency>
  233. <!-- Jolokia -->
  234. <dependency>
  235. <groupId>org.jolokia</groupId>
  236. <artifactId>jolokia-core</artifactId>
  237. <version>${jolokia-version}</version>
  238. </dependency>
  239. <!-- Spring -->
  240. <dependency>
  241. <groupId>org.springframework</groupId>
  242. <artifactId>spring-context</artifactId>
  243. <version>${spring-version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.springframework</groupId>
  247. <artifactId>spring-test</artifactId>
  248. <version>${spring-version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.springframework</groupId>
  252. <artifactId>spring-core</artifactId>
  253. <version>${spring-version}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.springframework</groupId>
  257. <artifactId>spring-beans</artifactId>
  258. <version>${spring-version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.springframework</groupId>
  262. <artifactId>spring-web</artifactId>
  263. <version>${spring-version}</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.springframework</groupId>
  267. <artifactId>spring-aop</artifactId>
  268. <version>${spring-version}</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.springframework</groupId>
  272. <artifactId>spring-jdbc</artifactId>
  273. <version>${spring-version}</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.springframework</groupId>
  277. <artifactId>spring-orm</artifactId>
  278. <version>${spring-version}</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.springframework</groupId>
  282. <artifactId>spring-jms</artifactId>
  283. <version>${spring-version}</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.springframework</groupId>
  287. <artifactId>spring-context-support</artifactId>
  288. <version>${spring-version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.springframework</groupId>
  292. <artifactId>spring-tx</artifactId>
  293. <version>${spring-version}</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.springframework</groupId>
  297. <artifactId>spring-expression</artifactId>
  298. <version>${spring-version}</version>
  299. </dependency>
  300. <!-- Java FTP server -->
  301. <dependency>
  302. <groupId>org.apache.ftpserver</groupId>
  303. <artifactId>ftpserver-core</artifactId>
  304. <version>1.0.0</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>org.apache.ftpserver</groupId>
  308. <artifactId>ftplet-api</artifactId>
  309. <version>1.0.0</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>org.apache.mina</groupId>
  313. <artifactId>mina-core</artifactId>
  314. <version>2.0.9</version>
  315. </dependency>
  316. </dependencies>
  317. </dependencyManagement>
  318. </project>