187 lines
7.2 KiB
XML
187 lines
7.2 KiB
XML
|
<!--
|
||
|
~ Copyright 2009 Red Hat, Inc.
|
||
|
~ Red Hat licenses this file to you under the Apache License, version
|
||
|
~ 2.0 (the "License"); you may not use this file except in compliance
|
||
|
~ with the License. You may obtain a copy of the License at
|
||
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
||
|
~ Unless required by applicable law or agreed to in writing, software
|
||
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||
|
~ implied. See the License for the specific language governing
|
||
|
~ permissions and limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.hornetq</groupId>
|
||
|
<artifactId>hornetq-distribution</artifactId>
|
||
|
<version>2.5.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>hornetq</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>Actual HornetQ Distribution</name>
|
||
|
|
||
|
<properties>
|
||
|
<schemaLocation>${project.build.directory}/${project.artifactId}-${project.version}-bin/${project.artifactId}-${project.version}/schema</schemaLocation>
|
||
|
<standalone>src/main/resources/config/stand-alone</standalone>
|
||
|
<as6>src/main/resources/config/jboss-as-6</as6>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.hornetq</groupId>
|
||
|
<artifactId>hornetq-core-client</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hornetq</groupId>
|
||
|
<artifactId>hornetq-amqp-protocol</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hornetq</groupId>
|
||
|
<artifactId>hornetq-stomp-protocol</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.qpid</groupId>
|
||
|
<artifactId>proton-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.qpid</groupId>
|
||
|
<artifactId>proton-j-impl</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.qpid</groupId>
|
||
|
<artifactId>proton-jms</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<skip>true</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<version>2.2</version>
|
||
|
<configuration>
|
||
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
||
|
<tarLongFileMode>gnu</tarLongFileMode>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>xml-maven-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>validate</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<validationSets>
|
||
|
<validationSet>
|
||
|
<dir>${standalone}/clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-configuration.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-configuration.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${standalone}/non-clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-configuration.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-configuration.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${as6}/clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-configuration.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-configuration.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${as6}/non-clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-configuration.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-configuration.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${standalone}/clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-jms.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-jms.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${standalone}/non-clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-jms.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-jms.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${as6}/clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-jms.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-jms.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${as6}/non-clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-jms.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-jms.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${standalone}/clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-users.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-users.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
<validationSet>
|
||
|
<dir>${standalone}/non-clustered</dir>
|
||
|
<systemId>${schemaLocation}/hornetq-users.xsd</systemId>
|
||
|
<includes>
|
||
|
<include>hornetq-users.xml</include>
|
||
|
</includes>
|
||
|
</validationSet>
|
||
|
</validationSets>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|