mirror of https://github.com/apache/activemq.git
Added spring-aop so the broker boots up correctly due to recent camel dependency
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@676927 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8ee94b802c
commit
35e33eab07
|
@ -190,12 +190,11 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-webmvc</artifactId>
|
||||
<optional>false</optional>
|
||||
</dependency>
|
||||
<artifactId>spring-aop</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
<artifactId>spring-jms</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
|
@ -203,7 +202,12 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jms</artifactId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-webmvc</artifactId>
|
||||
<optional>false</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
|
|
@ -145,6 +145,7 @@
|
|||
<include>org.apache.geronimo.specs:geronimo-j2ee-jacc_1.0_spec</include>
|
||||
<include>org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec</include>
|
||||
<include>org.apache.xbean:xbean-spring</include>
|
||||
<include>org.springframework:spring-aop</include>
|
||||
<include>org.springframework:spring-core</include>
|
||||
<include>org.springframework:spring-beans</include>
|
||||
<include>org.springframework:spring-context</include>
|
||||
|
|
15
pom.xml
15
pom.xml
|
@ -130,6 +130,7 @@
|
|||
<module>activemq-openwire-generator</module>
|
||||
<module>activemq-optional</module>
|
||||
<module>activemq-pool</module>
|
||||
<module>activemq-protocol-buffer</module>
|
||||
<module>activemq-ra</module>
|
||||
<module>activemq-rar</module>
|
||||
<module>activemq-run</module>
|
||||
|
@ -465,10 +466,10 @@
|
|||
<!-- Optional Spring Support -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-core</artifactId>
|
||||
<artifactId>spring-aop</artifactId>
|
||||
<version>${spring-version}</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-beans</artifactId>
|
||||
|
@ -483,13 +484,19 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-tx</artifactId>
|
||||
<artifactId>spring-core</artifactId>
|
||||
<version>${spring-version}</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jms</artifactId>
|
||||
<version>${spring-version}</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jms</artifactId>
|
||||
<artifactId>spring-tx</artifactId>
|
||||
<version>${spring-version}</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
|
Loading…
Reference in New Issue