mirror of https://github.com/apache/activemq.git
AMQ-6834 - Adding back in spring schemas for camel
This commit is contained in:
parent
98a5e55a96
commit
0c396a23e7
|
@ -162,10 +162,8 @@
|
|||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>activemq-web</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-all</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
|
@ -211,7 +209,7 @@
|
|||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<!-- get camel core blueprint schema info -->
|
||||
<!-- get camel core spring schema info -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
|
@ -223,7 +221,15 @@
|
|||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<!-- only camel-blueprint is supported with XML in OSGi with Camel -->
|
||||
<artifactItem>
|
||||
<groupId>org.apache.camel</groupId>
|
||||
<artifactId>camel-spring</artifactId>
|
||||
<version>${camel-version}</version>
|
||||
<type>jar</type>
|
||||
<overWrite>false</overWrite>
|
||||
<outputDirectory>${basedir}/target/extra-resources/</outputDirectory>
|
||||
<includes>camel-spring.xsd</includes>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>org.apache.camel</groupId>
|
||||
<artifactId>camel-blueprint</artifactId>
|
||||
|
|
|
@ -18,3 +18,5 @@
|
|||
# manual creation to include camel handler so we can embed camel context in xbean xml config
|
||||
#
|
||||
http\://activemq.apache.org/schema/core=org.apache.xbean.spring.context.v2.XBeanNamespaceHandler
|
||||
http\://camel.apache.org/schema/spring=org.apache.camel.spring.handler.CamelNamespaceHandler
|
||||
http\://camel.apache.org/schema/spring/v2.10=org.apache.camel.spring.handler.CamelNamespaceHandler
|
||||
|
|
|
@ -57,6 +57,8 @@ http\://activemq.apache.org/schema/core/activemq-core-5.14.5.xsd=activemq.xsd
|
|||
http\://activemq.apache.org/schema/core/activemq-core-5.15.0.xsd=activemq.xsd
|
||||
http\://activemq.apache.org/schema/core/activemq-core-5.15.1.xsd=activemq.xsd
|
||||
|
||||
http\://camel.apache.org/schema/spring/camel-spring.xsd=camel-spring.xsd
|
||||
|
||||
http\://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd
|
||||
http\://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd
|
||||
http\://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd
|
||||
|
|
Loading…
Reference in New Issue