blob: 42bd4394ced026304947772343a4150d4c1fa3cb [file] [log] [blame]
<?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>
<artifactId>fest-swing</artifactId>
<version>1.4-SNAPSHOT</version>
<name>FEST-Swing</name>
<description>Fluent interface for functional GUI testing</description>
<inceptionYear>2007</inceptionYear>
<url>http://fest.easytesting.org/swing</url>
<parent>
<groupId>org.easytesting</groupId>
<artifactId>fest</artifactId>
<version>1.0.16</version>
</parent>
<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>
<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>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>1.0-1</version>
</dependency>
<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>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>13.0</version>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-reflect</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-test</artifactId>
<version>2.1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.multithreadedtc</groupId>
<artifactId>multithreadedtc</artifactId>
<version>1.01</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>