<?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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>de.richtercloud</groupId>
        <artifactId>jhbuild-java-wrapper</artifactId>
        <version>1.0</version>
    </parent>
    <artifactId>jhbuild-java-wrapper-it</artifactId>
    <packaging>jar</packaging>
    <name>jhbuild-java-wrapper-it</name>
    <dependencies>
        <!-- jhbuild-java-wrapper dependencies -->
        <dependency>
            <groupId>de.richtercloud</groupId>
            <artifactId>jhbuild-java-wrapper-core</artifactId>
            <version>1.0</version>
            <type>jar</type>
        </dependency>
        <!-- other dependencies -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <type>jar</type>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.19.1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                        <configuration>
                            <forkCount>1C</forkCount>
                            <argLine>-Xmx12g</argLine>
                                <!-- Xmx8g is too small for
                                        LargeBinaryStorageIT -->
                            <trimStackTrace>false</trimStackTrace>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>