|
5 | 5 | <artifactId>SPR-9600</artifactId>
|
6 | 6 | <version>1.0-SNAPSHOT</version>
|
7 | 7 | <packaging>jar</packaging>
|
| 8 | + |
| 9 | + <properties> |
| 10 | + <project.build.sourceEncoding>UTF8</project.build.sourceEncoding> |
| 11 | + <spring.version>4.0.5.RELEASE</spring.version> |
| 12 | + <activemq.version>5.9.1</activemq.version> |
| 13 | + </properties> |
| 14 | + |
8 | 15 | <dependencies>
|
9 | 16 | <dependency>
|
10 | 17 | <groupId>org.springframework</groupId>
|
11 | 18 | <artifactId>spring-context</artifactId>
|
12 |
| - <version>3.0.5.RELEASE</version> |
| 19 | + <version>${spring.version}</version> |
13 | 20 | </dependency>
|
14 | 21 | <dependency>
|
15 | 22 | <groupId>org.springframework</groupId>
|
16 | 23 | <artifactId>spring-jms</artifactId>
|
17 |
| - <version>3.0.5.RELEASE</version> |
| 24 | + <version>${spring.version}</version> |
18 | 25 | </dependency>
|
| 26 | + <dependency> |
| 27 | + <groupId>org.apache.activemq</groupId> |
| 28 | + <artifactId>activemq-client</artifactId> |
| 29 | + <version>${activemq.version}</version> |
| 30 | + </dependency> |
| 31 | + |
19 | 32 | <dependency>
|
20 | 33 | <groupId>org.apache.xbean</groupId>
|
21 | 34 | <artifactId>xbean-spring</artifactId>
|
|
32 | 45 | <version>4.8</version>
|
33 | 46 | <scope>test</scope>
|
34 | 47 | </dependency>
|
35 |
| - <dependency> |
36 |
| - <groupId>org.apache.activemq</groupId> |
37 |
| - <artifactId>activemq-core</artifactId> |
38 |
| - <version>5.3.1</version> |
39 |
| - <exclusions> |
40 |
| - <exclusion> |
41 |
| - <groupId>org.osgi</groupId> |
42 |
| - <artifactId>org.osgi.core</artifactId> |
43 |
| - </exclusion> |
44 |
| - <exclusion> |
45 |
| - <groupId>org.springframework.osgi</groupId> |
46 |
| - <artifactId>spring-osgi-core</artifactId> |
47 |
| - </exclusion> |
48 |
| - <exclusion> |
49 |
| - <groupId>org.apache.activemq</groupId> |
50 |
| - <artifactId>activemq-jaas</artifactId> |
51 |
| - </exclusion> |
52 |
| - <exclusion> |
53 |
| - <groupId>org.apache.activemq.protobuf</groupId> |
54 |
| - <artifactId>activemq-protobuf</artifactId> |
55 |
| - </exclusion> |
56 |
| - <exclusion> |
57 |
| - <groupId>org.apache.activemq</groupId> |
58 |
| - <artifactId>kahadb</artifactId> |
59 |
| - </exclusion> |
60 |
| - </exclusions> |
61 |
| - </dependency> |
62 | 48 | </dependencies>
|
63 |
| - <repositories> |
64 |
| - <repository> |
65 |
| - <id>spring-maven-snapshot</id> |
66 |
| - <name>Springframework Maven Snapshot Repository</name> |
67 |
| - <url>http://repo.springsource.org/snapshot</url> |
68 |
| - <snapshots><enabled>true</enabled></snapshots> |
69 |
| - </repository> |
70 |
| - </repositories> |
71 |
| - <properties> |
72 |
| - <project.build.sourceEncoding>UTF8</project.build.sourceEncoding> |
73 |
| - </properties> |
74 | 49 | <build>
|
75 | 50 | <plugins>
|
76 | 51 | <plugin>
|
|
95 | 70 | </plugin>
|
96 | 71 | </plugins>
|
97 | 72 | </build>
|
| 73 | + <repositories> |
| 74 | + <repository> |
| 75 | + <id>spring-maven-snapshot</id> |
| 76 | + <name>Springframework Maven Snapshot Repository</name> |
| 77 | + <url>http://repo.springsource.org/snapshot</url> |
| 78 | + <snapshots><enabled>true</enabled></snapshots> |
| 79 | + </repository> |
| 80 | + </repositories> |
98 | 81 | </project>
|
99 | 82 |
|
0 commit comments