mirror of https://github.com/apache/activemq.git
got the xbean XSDs to deploy as part of a release
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@427527 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
794acb667c
commit
3badddac87
|
@ -303,15 +303,9 @@
|
|||
<version>${pom.version}</version>
|
||||
<configuration>
|
||||
<scripts>
|
||||
GenerateJavaMarshalling.groovy:
|
||||
GenerateJavaTests.groovy:
|
||||
GenerateCSharpMarshalling.groovy:
|
||||
GenerateCSharpClasses.groovy:
|
||||
GenerateCppMarshallingClasses.groovy:
|
||||
GenerateCppMarshallingHeaders.groovy:
|
||||
GenerateCppHeaders.groovy:
|
||||
GenerateCppClasses.groovy:
|
||||
GenerateCMarshalling.groovy:
|
||||
GenerateJavaMarshalling.groovy: GenerateJavaTests.groovy: GenerateCSharpMarshalling.groovy:
|
||||
GenerateCSharpClasses.groovy: GenerateCppMarshallingClasses.groovy: GenerateCppMarshallingHeaders.groovy:
|
||||
GenerateCppHeaders.groovy: GenerateCppClasses.groovy: GenerateCMarshalling.groovy:
|
||||
</scripts>
|
||||
<groovyProperties>
|
||||
<version>1</version>
|
||||
|
@ -326,23 +320,6 @@
|
|||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.xbean</groupId>
|
||||
<artifactId>maven-xbean-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<configuration>
|
||||
<namespace>http://activemq.org/config/1.0</namespace>
|
||||
<schema>target/activemq.xsd</schema>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>mapping</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javacc-maven-plugin</artifactId>
|
||||
|
@ -362,6 +339,49 @@
|
|||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.xbean</groupId>
|
||||
<artifactId>maven-xbean-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<configuration>
|
||||
<namespace>http://activemq.org/config/1.0</namespace>
|
||||
<schema>target/activemq.xsd</schema>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>mapping</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- lets ensure that the XSD gets deployed -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-artifacts</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>attach-artifact</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifacts>
|
||||
<artifact>
|
||||
<file>${basedir}/target/activemq.xsd</file>
|
||||
<type>xsd</type>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>${basedir}/target/activemq.xsd.html</file>
|
||||
<type>xsd.html</type>
|
||||
</artifact>
|
||||
</artifacts>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
|
@ -17,10 +17,8 @@
|
|||
limitations under the License.
|
||||
-->
|
||||
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0">
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -77,8 +75,6 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
<!-- Configure which tests are included/excuded -->
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -96,6 +92,34 @@
|
|||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- lets ensure that the XSD gets deployed -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-artifacts</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>attach-artifact</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifacts>
|
||||
<artifact>
|
||||
<file>${basedir}/target/xbean/activemq-ra.xsd</file>
|
||||
<type>xsd</type>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>${basedir}/target/xbean/activemq-ra.xsd.html</file>
|
||||
<type>xsd.html</type>
|
||||
</artifact>
|
||||
</artifacts>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Configure which tests are included/excuded -->
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
|
|
Loading…
Reference in New Issue