<?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.qa.backwards</groupId>
        <artifactId>two-versions-parent</artifactId>
        <version>2.1.0</version>
        <relativePath>../two-versions-parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>2.0.0</artifactId>
    <name>QA: BWC: 2.0.0</name>
    <description>Backwards compatibility tests against 2.0.0</description>

    <properties>
        <tests.bwc.version>2.0.0</tests.bwc.version>
        <skip.integ.tests>${skipTests}</skip.integ.tests>
    </properties>

    <!-- disable backwards tests with 2.0.0 on java 9, because that
         version will die instantly under jigsaw -->
    <profiles>
        <profile>
            <activation>
                <jdk>1.9</jdk>
            </activation>
            <properties>
                <skip.integ.tests>true</skip.integ.tests>
            </properties>
        </profile>
    </profiles>
</project>
