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+
7+ <groupId >com.fd</groupId >
8+ <artifactId >tryout.jms</artifactId >
9+ <version >1.0-SNAPSHOT</version >
10+
11+ <parent >
12+ <groupId >org.springframework.boot</groupId >
13+ <artifactId >spring-boot-starter-parent</artifactId >
14+ <version >2.0.3.RELEASE</version >
15+ </parent >
16+
17+ <properties >
18+ <java .version>1.8</java .version>
19+ </properties >
20+
21+ <dependencies >
22+
23+ <dependency >
24+ <groupId >org.springframework.boot</groupId >
25+ <artifactId >spring-boot-starter-activemq</artifactId >
26+ </dependency >
27+
28+ <dependency >
29+ <groupId >org.apache.activemq</groupId >
30+ <artifactId >activemq-pool</artifactId >
31+ </dependency >
32+
33+ <dependency >
34+ <groupId >org.apache.camel</groupId >
35+ <artifactId >camel-spring-boot-starter</artifactId >
36+ <version >2.22.0</version >
37+ </dependency >
38+
39+ <dependency >
40+ <groupId >org.apache.camel</groupId >
41+ <artifactId >camel-jms</artifactId >
42+ <version >2.22.0</version >
43+ </dependency >
44+
45+ <dependency >
46+ <groupId >org.springframework.boot</groupId >
47+ <artifactId >spring-boot-starter-web</artifactId >
48+ </dependency >
49+
50+ <dependency >
51+ <groupId >org.springframework.boot</groupId >
52+ <artifactId >spring-boot-starter-test</artifactId >
53+ <scope >test</scope >
54+ </dependency >
55+
56+ </dependencies >
57+
58+ <build >
59+ <plugins >
60+ <plugin >
61+ <groupId >org.springframework.boot</groupId >
62+ <artifactId >spring-boot-maven-plugin</artifactId >
63+ </plugin >
64+ </plugins >
65+ </build >
66+
67+ </project >
0 commit comments