Maven Repository - POM file for Swing JavaFX fest-swing 1.2.1 1.2.1

Summary

FEST Swing.

Fluent interface for functional GUI testing.

Declaration

Here is the list of declaration for fest-swing. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.easytesting</groupId>
   <artifactId>fest-swing</artifactId>
   <version>1.2.1</version>
</dependency>

If you think this Maven repository POM file listing for fest-swing is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The fest-swing-1.2.1 has 8 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Testingfest-assert 1.2
'Flexible' or 'fluent' assertions for testing
10
Developmentfest-reflect 1.2
Fluent Interface that simplifies usage of Java Reflection
19
Libraryfest-util 1.1.3
Utility methods used by FEST modules
9
Testing Mockfest-mocks 1.1
Utilities that simplify usage of Mock Objects
6
JUnitjunit 4.5
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
385




Depended by

The following table lists the most popular artifacts which are depending on fest-swing-1.2.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Swing JavaFXfest-swing-testng 1.2.1
TestNG-specific extension for FEST-Swing
8

Plugin

The following plugins are used in the fest-swing-1.2.1.jar

  1. maven-jar-plugin
  2. maven-surefire-plugin

Packages

The following packages are defined in the fest-swing-1.2.1.jar

org.fest.swing.annotation
org.fest.swing.applet
org.fest.swing.awt
org.fest.swing.cell
org.fest.swing.core
org.fest.swing.core.matcher
org.fest.swing.data
org.fest.swing.driver
org.fest.swing.edt
org.fest.swing.exception
org.fest.swing.finder
org.fest.swing.fixture
org.fest.swing.format
org.fest.swing.hierarchy
org.fest.swing.image
org.fest.swing.input
org.fest.swing.keystroke
org.fest.swing.launcher
org.fest.swing.listener
org.fest.swing.lock
org.fest.swing.monitor
org.fest.swing.query
org.fest.swing.security
org.fest.swing.testing
org.fest.swing.timing
org.fest.swing.util




POM File Source

Here is the content of the POM file.

<?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</artifactId>
  <version>1.2.1</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.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>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.5</version>
        <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-jar-plugin</artifactId>
        <version>2.3</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>test-jar</goal>
            </goals>
            <configuration>
              <includes>
               <include>org/fest/swing/test/**/*.class</include>
              </includes>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <scm>
    <developerConnection>scm:svn:https://svn.codehaus.org/fest/</developerConnection>
    <connection>scm:svn:http://svn.codehaus.org/fest/</connection>
    <url>http://fisheye.codehaus.org/browse/fest/</url>
  </scm>
  <issueManagement>
    <system>JIRA</system>
    <url>http://jira.codehaus.org/browse/FEST</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>org.easytesting</groupId>
      <artifactId>fest-assert</artifactId>
      <version>1.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.easytesting</groupId>
      <artifactId>fest-reflect</artifactId>
      <version>1.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.easytesting</groupId>
      <artifactId>fest-util</artifactId>
      <version>1.1.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>net.jcip</groupId>
      <artifactId>jcip-annotations</artifactId>
      <version>1.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.easytesting</groupId>
      <artifactId>fest-mocks</artifactId>
      <version>1.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.easytesting</groupId>
      <artifactId>fest-test</artifactId>
      <version>1.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.googlecode.multithreadedtc</groupId>
      <artifactId>multithreadedtc</artifactId>
      <version>1.01</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.5</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>