2017-04-02 19:16:50 -04:00
|
|
|
<!--
|
2017-04-05 10:25:28 -04: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
|
2017-04-02 19:16:50 -04:00
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
2017-04-05 10:25:28 -04:00
|
|
|
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.
|
2017-04-02 19:16:50 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2017-04-04 20:20:56 -04:00
|
|
|
<groupId>org.apache.activemq.tests</groupId>
|
|
|
|
<artifactId>artemis-tests-pom</artifactId>
|
2018-03-12 12:46:16 -04:00
|
|
|
<version>2.5.0</version>
|
2017-04-02 19:16:50 -04:00
|
|
|
</parent>
|
|
|
|
|
2017-04-04 20:20:56 -04:00
|
|
|
<artifactId>smoke-tests</artifactId>
|
2017-04-05 10:25:28 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Smoke Tests</name>
|
2017-04-02 19:16:50 -04:00
|
|
|
|
|
|
|
<properties>
|
2017-04-05 10:25:28 -04:00
|
|
|
<activemq.basedir>${project.basedir}/../../</activemq.basedir>
|
2017-04-02 19:16:50 -04:00
|
|
|
</properties>
|
|
|
|
|
2017-04-05 10:25:28 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- this dependency is here to make sure this module is only executed
|
|
|
|
after the distribution is created.
|
|
|
|
Otherwise it will get here before the build eventually.
|
|
|
|
e.g if you use mvn install -T 20 -->
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>apache-artemis</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<type>pom</type>
|
2017-10-31 09:19:00 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jms-client-all</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-04-05 10:25:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jms-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-commons</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-commons</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-cli</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_2.0_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging-processor</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.qpid</groupId>
|
|
|
|
<artifactId>qpid-jms-client</artifactId>
|
|
|
|
<version>${qpid.jms.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logmanager</groupId>
|
|
|
|
<artifactId>jboss-logmanager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>test-compile</phase>
|
|
|
|
<id>create0</id>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- this makes it easier in certain envs -->
|
|
|
|
<javaOptions>-Djava.net.preferIPv4Stack=true</javaOptions>
|
|
|
|
<instance>${basedir}/target/replicated-static0</instance>
|
|
|
|
<configuration>${basedir}/target/classes/servers/replicated-static0</configuration>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<phase>test-compile</phase>
|
|
|
|
<id>create1</id>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- this makes it easier in certain envs -->
|
|
|
|
<javaOptions>-Djava.net.preferIPv4Stack=true</javaOptions>
|
|
|
|
<instance>${basedir}/target/replicated-static1</instance>
|
|
|
|
<configuration>${basedir}/target/classes/servers/replicated-static1</configuration>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2017-04-18 10:29:29 -04:00
|
|
|
<execution>
|
|
|
|
<phase>test-compile</phase>
|
|
|
|
<id>create-expire</id>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- this makes it easier in certain envs -->
|
|
|
|
<configuration>${basedir}/target/classes/servers/expire</configuration>
|
|
|
|
<javaOptions>-Dartemis.debug.paging.interval=1</javaOptions>
|
|
|
|
<allowAnonymous>true</allowAnonymous>
|
|
|
|
<user>admin</user>
|
|
|
|
<password>admin</password>
|
|
|
|
<instance>${basedir}/target/expire</instance>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
|
2017-04-05 10:25:28 -04:00
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq.tests</groupId>
|
|
|
|
<artifactId>smoke-tests</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
<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>${skipSmokeTests}</skipTests>
|
|
|
|
<argLine>${activemq-surefire-argline}</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2017-04-02 19:16:50 -04:00
|
|
|
</project>
|