| <?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.easytesting</groupId> |
| <artifactId>fest-swing-junit</artifactId> |
| <version>1.4a1-SNAPSHOT</version> |
| <name>FEST Swing - JUnit Extension</name> |
| <description>JUnit-specific extension for FEST-Swing</description> |
| <inceptionYear>2007</inceptionYear> |
| <url>http://fest.easytesting.org/swing</url> |
| <parent> |
| <groupId>org.easytesting</groupId> |
| <artifactId>fest</artifactId> |
| <version>1.0.1</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>JIRA</system> |
| <url>http://jira.codehaus.org/browse/FEST</url> |
| </issueManagement> |
| <dependencies> |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| <version>1.3</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant-junit</artifactId> |
| <version>1.7.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.5</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easytesting</groupId> |
| <artifactId>fest-swing</artifactId> |
| <version>1.4a1-SNAPSHOT</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easytesting</groupId> |
| <artifactId>fest-test</artifactId> |
| <version>1.2.1</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easytesting</groupId> |
| <artifactId>fest-mocks</artifactId> |
| <version>1.1</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <configuration> |
| <aggregate>true</aggregate> |
| <minmemory>128m</minmemory> |
| <maxmemory>512m</maxmemory> |
| <breakiterator>true</breakiterator> |
| <quiet>true</quiet> |
| <source>1.5</source> |
| <verbose>false</verbose> |
| <linksource>true</linksource> |
| <links> |
| <link>http://java.sun.com/j2se/1.5.0/docs/api/</link> |
| <link>http://testng.org/javadocs</link> |
| <link>http://www.junit.org/junit/javadoc/4.3</link> |
| <link>http://fest.easytesting.org/swing/apidocs/</link> |
| </links> |
| </configuration> |
| <reportSets> |
| <reportSet> |
| <reports> |
| <report>javadoc</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| </plugin> |
| </plugins> |
| </reporting> |
| </project> |