<?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/maven-v4_0_0.xsd ">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.jetbrains.intellij.deps</groupId>
    <artifactId>fest-swing</artifactId>
    <version>1.4.2</version>
    <name>FEST-Swing</name>
    <description>Fluent interface for functional GUI testing</description>
    <inceptionYear>2007</inceptionYear>
    <url>http://fest.easytesting.org/swing</url>
    <repositories>
        <repository>
            <id>my-local-repo</id>
            <url>file://${basedir}/maven-repo</url>
        </repository>
    </repositories>
    <mailingLists>
        <mailingList>
            <name>Easy Testing Group</name>
            <post>http://groups.google.com/group/easytesting</post>
            <subscribe>http://groups.google.com/group/easytesting</subscribe>
            <unsubscribe>http://groups.google.com/group/easytesting</unsubscribe>
        </mailingList>
    </mailingLists>
    <scm>
        <developerConnection>scm:git:git@github.com:alexruiz/fest-swing-1.x.git</developerConnection>
        <connection>scm:git:git://github.com/alexruiz/fest-swing-1.x.git</connection>
        <url>https://github.com/alexruiz/fest-swing-1.x</url>
    </scm>
    <distributionManagement>
        <repository>
            <id>bintray-jetbrains-intellij-third-party-dependencies</id>
            <url>https://api.bintray.com/maven/jetbrains/intellij-third-party-dependencies/fest-swing/;publish=1
            </url>
        </repository>
    </distributionManagement>
    <issueManagement>
        <system>github</system>
        <url>https://github.com/alexruiz/fest-swing-1.x/issues</url>
    </issueManagement>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <forkMode>always</forkMode>
                    <includes>
                        <include>**/*Test.java</include>
                    </includes>
                    <argLine>-Xms512m -Xmx512m</argLine>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-install-plugin</artifactId>
                <version>2.5.2</version>
                <executions>
                    <execution>
                        <id>install-fest-util</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>install-file</goal>
                        </goals>
                        <configuration>
                            <groupId>org.easytesting</groupId>
                            <artifactId>fest-util</artifactId>
                            <version>1.3.0-SNAPSHOT</version>
                            <packaging>jar</packaging>
                            <file>${basedir}/lib/fest-util-1.3.0-SNAPSHOT.jar</file>
                            <localRepositoryPath>${basedir}/maven-repo</localRepositoryPath>
                        </configuration>
                    </execution>
                    <execution>
                        <id>install-fest-assert</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>install-file</goal>
                        </goals>
                        <configuration>
                            <groupId>org.easytesting</groupId>
                            <artifactId>fest-assert</artifactId>
                            <version>1.5.0-SNAPSHOT</version>
                            <packaging>jar</packaging>
                            <file>${basedir}/lib/fest-assert-1.5.0-SNAPSHOT.jar</file>
                            <localRepositoryPath>${basedir}/maven-repo</localRepositoryPath>
                        </configuration>
                    </execution>
                    <execution>
                        <id>install-fest-reflect</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>install-file</goal>
                        </goals>
                        <configuration>
                            <groupId>org.easytesting</groupId>
                            <artifactId>fest-reflect</artifactId>
                            <version>2.0-SNAPSHOT</version>
                            <packaging>jar</packaging>
                            <file>${basedir}/lib/fest-reflect-2.0-SNAPSHOT.jar</file>
                            <localRepositoryPath>${basedir}/maven-repo</localRepositoryPath>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.easytesting</groupId>
            <artifactId>fest-assert</artifactId>
            <version>1.5.0-SNAPSHOT</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.easytesting</groupId>
            <artifactId>fest-util</artifactId>
            <version>1.3.0-SNAPSHOT</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.easytesting</groupId>
            <artifactId>fest-reflect</artifactId>
            <version>2.0-SNAPSHOT</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.googlecode.multithreadedtc</groupId>
            <artifactId>multithreadedtc</artifactId>
            <version>1.01</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
            <version>2.0.1</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>