parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.elasticsearch.qa.backwards</groupId>
<artifactId>parent</artifactId>
<version>2.4.6</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.elasticsearch</groupId>
<artifactId>parent</artifactId>
<version>2.4.6</version>
<relativePath>../..</relativePath>
<!-- Depend on the normal parent here because the QA parent has a bunch
of stuff for smoke tests which doesn't and breaks things. -->
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>org.elasticsearch.qa.backwards</groupId>
<artifactId>parent</artifactId>
<name>QA: Backwards Compatibility</name>
<description>Parent module for backwards compatibility tests</description>
<properties>
<tests.bwc.path>target/backwards</tests.bwc.path>
</properties>
<modules>
<module>shared</module>
<module>two-versions-parent</module>
<module>current</module>
<module>2.0</module>
<module>2.1</module>
<module>2.2</module>
<module>2.3</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<!-- Don't run the license checker in qa -->
<id>check-license</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>