| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| 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. |
| --> |
| <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.apache.qpid</groupId> |
| <artifactId>qpid-broker-parent</artifactId> |
| <version>7.0.7</version> |
| </parent> |
| |
| <artifactId>qpid-systests-parent</artifactId> |
| <version>7.0.7</version> |
| <packaging>pom</packaging> |
| <name>Apache Qpid Broker-J System Test Parent</name> |
| <description>Parent POM for Qpid system testing modules</description> |
| |
| <properties> |
| <broker.home.dir>target${file.separator}qpid-broker${file.separator}${project.version}</broker.home.dir> |
| <!-- test properties --> |
| <qpid.home>${basedir}${file.separator}${broker.home.dir}</qpid.home> |
| |
| <test.working.directory>${basedir}/..</test.working.directory> |
| <test.resource.directory>${basedir}/..</test.resource.directory> |
| <test.systest.resource.directory>${basedir}</test.systest.resource.directory> |
| <skip.systests>${skipTests}</skip.systests> |
| </properties> |
| |
| <dependencies> |
| <!-- general test deps --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>${junit-version}</version> |
| <scope>compile</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-all</artifactId> |
| <version>${mockito-version}</version> |
| <scope>compile</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <!--version specified in parent pluginManagement --> |
| <configuration> |
| <workingDirectory>${test.working.directory}</workingDirectory> |
| <!-- Skip the default test phase, bind to the |
| integration-test phase below instead --> |
| <skip>true</skip> |
| <systemPropertyVariables> |
| <test.output.dir>${test.output.dir}</test.output.dir> |
| </systemPropertyVariables> |
| <skipTests>${skip.systests}</skipTests> |
| </configuration> |
| <executions> |
| <execution> |
| <id>integration-test</id> |
| <phase>integration-test</phase> |
| <goals> |
| <goal>test</goal> |
| </goals> |
| <configuration> |
| <skip>false</skip> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <!--version specified in parent pluginManagement --> |
| <executions> |
| <!-- copy the systests config files into the ${qpid.home}/etc |
| directory where the tests expect them --> |
| <execution> |
| <id>copy-systests-etc-resources</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${qpid.home}</outputDirectory> |
| <resources> |
| <resource> |
| <directory>${test.systest.resource.directory}</directory> |
| <includes> |
| <include>etc/</include> |
| </includes> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| <!-- copy the ../test-profiles directory into ${qpid.home}/.. |
| directory where the tests expect it --> |
| <execution> |
| <id>copy-test-profile-resources</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${qpid.home}/..</outputDirectory> |
| <resources> |
| <resource> |
| <directory>${test.resource.directory}</directory> |
| <includes> |
| <include>test-profiles/</include> |
| </includes> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <!--version specified in parent pluginManagement --> |
| <executions> |
| <execution> |
| <id>extract-broker-distribution</id> |
| <phase>pre-integration-test</phase> |
| <goals> |
| <goal>unpack</goal> |
| </goals> |
| <configuration> |
| <outputAbsoluteArtifactFilename>false</outputAbsoluteArtifactFilename> |
| <outputDirectory>${project.build.directory}</outputDirectory> |
| <artifactItems> |
| <artifactItem> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>apache-qpid-broker-j</artifactId> |
| <version>${project.version}</version> |
| <classifier>bin</classifier> |
| <type>tar.gz</type> |
| </artifactItem> |
| </artifactItems> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <!--version specified in parent pluginManagement --> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <configuration> |
| <!--The systests arent currently deployed, and their javadoc is rather broken anyway --> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| </plugins> |
| </reporting> |
| |
| </project> |