2015-01-05 07:45:36 -05:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF 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.
|
|
|
|
-->
|
2015-03-09 13:55:56 -04:00
|
|
|
<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">
|
2014-10-31 06:20:28 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq.tests</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-tests-pom</artifactId>
|
2017-05-08 15:20:12 -04:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>integration-tests</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2015-04-21 09:49:05 -04:00
|
|
|
<name>ActiveMQ Artemis Integration Tests</name>
|
2014-10-31 06:20:28 -04:00
|
|
|
|
|
|
|
<properties>
|
2014-11-19 14:58:44 -05:00
|
|
|
<activemq.basedir>${project.basedir}/../..</activemq.basedir>
|
2016-09-09 09:10:10 -04:00
|
|
|
<karaf.version>4.0.6</karaf.version>
|
2016-10-07 18:09:11 -04:00
|
|
|
<pax.exam.version>4.9.1</pax.exam.version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</properties>
|
|
|
|
|
2015-07-06 12:01:08 -04:00
|
|
|
<repositories>
|
|
|
|
<!-- for the paho dependency -->
|
|
|
|
<repository>
|
|
|
|
<id>eclipse.m2</id>
|
2015-08-12 06:59:12 -04:00
|
|
|
<url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
|
|
|
|
<releases><enabled>true</enabled></releases>
|
|
|
|
<snapshots><enabled>false</enabled></snapshots>
|
2015-07-06 12:01:08 -04:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-server</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2016-09-08 20:46:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-commons</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq.tests</groupId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<artifactId>unit-tests</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-core-client</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-jms-client</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-07-17 19:05:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-json_1.0_spec</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.johnzon</groupId>
|
|
|
|
<artifactId>johnzon-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-jms-server</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
2014-12-03 09:50:16 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<!-- exclude JCA 1.5 spec here so geronimo dependency will be used -->
|
|
|
|
<groupId>org.jboss.spec.javax.resource</groupId>
|
|
|
|
<artifactId>jboss-connector-api_1.5_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-ra</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-05-03 11:40:36 -04:00
|
|
|
<artifactId>artemis-cli</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-commons</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-spring-integration</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-journal</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-01-07 05:12:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jdbc-store</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-amqp-protocol</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-stomp-protocol</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-openwire-protocol</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2015-07-06 12:01:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-hornetq-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-10-07 18:09:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-features</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
2015-07-06 12:01:08 -04:00
|
|
|
|
|
|
|
<!-- MQTT Deps -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-mqtt-protocol</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fusesource.mqtt-client</groupId>
|
|
|
|
<artifactId>mqtt-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.paho</groupId>
|
|
|
|
<artifactId>mqtt-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
2016-10-10 07:35:25 -04:00
|
|
|
<artifactId>netty-all</artifactId>
|
2015-07-06 12:01:08 -04:00
|
|
|
</dependency>
|
|
|
|
<!-- END MQTT Deps -->
|
|
|
|
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
2014-11-17 07:40:04 -05:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging-processor</artifactId>
|
2015-03-11 18:49:10 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logmanager</groupId>
|
|
|
|
<artifactId>jboss-logmanager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.qpid</groupId>
|
2015-09-10 13:57:18 -04:00
|
|
|
<artifactId>qpid-jms-client</artifactId>
|
2016-05-19 07:56:00 -04:00
|
|
|
<version>${qpid.jms.version}</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-11-10 11:14:12 -05:00
|
|
|
<groupId>org.apache.qpid</groupId>
|
|
|
|
<artifactId>proton-j</artifactId>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
<version>7.0.0.pre5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.javaee</groupId>
|
|
|
|
<artifactId>jboss-javaee</artifactId>
|
|
|
|
<version>5.0.0.GA</version>
|
|
|
|
</dependency>
|
2016-05-31 07:19:29 -04:00
|
|
|
|
|
|
|
<!-- DB Test Deps -->
|
2016-02-09 15:00:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
2016-05-31 07:19:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<scope>test</scope>
|
2016-02-09 15:00:39 -05:00
|
|
|
</dependency>
|
2016-06-01 07:33:36 -04:00
|
|
|
|
2014-11-10 11:14:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-10-01 17:58:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.directory.server</groupId>
|
|
|
|
<artifactId>apacheds-server-integ</artifactId>
|
|
|
|
<version>${directory-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.directory.server</groupId>
|
|
|
|
<artifactId>apacheds-core-integ</artifactId>
|
|
|
|
<version>${directory-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2016-05-19 07:56:00 -04:00
|
|
|
|
2016-10-07 18:09:11 -04:00
|
|
|
<!-- karaf test -->
|
2016-05-19 07:56:00 -04:00
|
|
|
|
2016-10-07 18:09:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-container-karaf</artifactId>
|
|
|
|
<version>${pax.exam.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-junit4</artifactId>
|
|
|
|
<version>${pax.exam.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf</groupId>
|
|
|
|
<artifactId>apache-karaf</artifactId>
|
|
|
|
<version>${karaf.version}</version>
|
|
|
|
<type>tar.gz</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.shell</groupId>
|
|
|
|
<artifactId>org.apache.karaf.shell.console</artifactId>
|
|
|
|
<version>${karaf.version}</version>
|
|
|
|
</dependency>
|
2016-07-15 13:03:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq.tests</groupId>
|
|
|
|
<artifactId>artemis-test-support</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2016-08-03 21:39:20 -04:00
|
|
|
|
|
|
|
<!-- rest test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
|
|
|
<artifactId>jetty-all</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<classifier>uber</classifier>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-jaxrs</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq.rest</groupId>
|
|
|
|
<artifactId>artemis-rest</artifactId>
|
2017-05-08 15:20:12 -04:00
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
2016-08-03 21:39:20 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2016-09-16 11:25:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core-asl</artifactId>
|
|
|
|
<version>4.4.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.xml.stream</groupId>
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2014-10-31 06:20:28 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
2016-08-03 21:39:20 -04:00
|
|
|
<excludes>
|
|
|
|
<exclude>**/rest/*.xml</exclude>
|
|
|
|
</excludes>
|
2014-10-31 06:20:28 -04:00
|
|
|
</testResource>
|
|
|
|
</testResources>
|
|
|
|
<plugins>
|
2016-08-03 21:39:20 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-test-classes</phase>
|
|
|
|
<id>bwlist-rest-test-war</id>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/test/resources/rest/bwlist-rest-test-asm.xml</descriptor>
|
|
|
|
<finalName>rest-test-bwlist</finalName>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
<outputDirectory>target/test-classes/rest/</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<phase>process-test-classes</phase>
|
|
|
|
<id>rest-test-war</id>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/test/resources/rest/rest-test-asm.xml</descriptor>
|
|
|
|
<finalName>rest-test</finalName>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
<outputDirectory>target/test-classes/rest/</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-10-31 06:20:28 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>${skipIntegrationTests}</skipTests>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/ReplicatedJMSFailoverTest.java</exclude>
|
2014-11-17 09:23:06 -05:00
|
|
|
<exclude>org.apache.activemq/tests/util/*.java</exclude>
|
2014-10-31 06:20:28 -04:00
|
|
|
</excludes>
|
2014-11-17 14:53:12 -05:00
|
|
|
<argLine>-Djgroups.bind_addr=::1 ${activemq-surefire-argline}</argLine>
|
2014-10-31 06:20:28 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-10-07 18:09:11 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.servicemix.tooling</groupId>
|
|
|
|
<artifactId>depends-maven-plugin</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>generate-depends-file</id>
|
|
|
|
<goals>
|
|
|
|
<goal>generate-depends-file</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-10-31 06:20:28 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|