| <?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-systests-parent</artifactId> |
| <version>6.0.9-SNAPSHOT</version> |
| <relativePath>../../qpid-systests-parent/pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>qpid-bdbstore-systests</artifactId> |
| <name>Apache Qpid BDB Store System Tests</name> |
| <description>BDB message store system tests</description> |
| |
| <properties> |
| <test.working.directory>${basedir}/../..</test.working.directory> |
| <test.resource.directory>${basedir}/../..</test.resource.directory> |
| <test.systest.resource.directory>${basedir}/../../systests</test.systest.resource.directory> |
| </properties> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-systests</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-jms_1.1_spec</artifactId> |
| <version>${geronimo-jms-1-1-version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-bdbstore</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-bdbstore-jmx</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.sleepycat</groupId> |
| <artifactId>je</artifactId> |
| <version>${bdb-version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-bdbstore</artifactId> |
| <version>${project.version}</version> |
| <type>test-jar</type> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| </resource> |
| </resources> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <!--version specified in parent pluginManagement --> |
| <executions> |
| <!-- copy the bdbstore bin contents to where the tests expect them --> |
| <execution> |
| <id>copy-bdbstore-bin-resources</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${qpid.home}</outputDirectory> |
| <resources> |
| <resource> |
| <directory>${basedir}/..</directory> |
| <includes> |
| <include>bin/</include> |
| </includes> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <!-- fix the fact that the maven-resources-plugin copy-resources doesn't maintain file permissions in unix --> |
| <execution> |
| <id>fix-bdb-script-permissions</id> |
| <phase>package</phase> |
| <configuration> |
| <target> |
| <chmod perm="755"> |
| <fileset dir="${qpid.home}"> |
| <include name="bin/**" /> |
| </fileset> |
| </chmod> |
| </target> |
| </configuration> |
| <goals><goal>run</goal></goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |