assertj-swing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.assertj</groupId> <artifactId>assertj-swing</artifactId> <version>3.17.1</version> </dependency>
<?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> <parent> <groupId>org.assertj</groupId> <artifactId>assertj-swing-parent-pom</artifactId> <version>3.17.1</version> </parent> <artifactId>assertj-swing</artifactId> <name>AssertJ-Swing</name> <description>Fluent interface for functional GUI testing</description> <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> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>jarjar-maven-plugin</artifactId> <version>1.9</version> <executions> <execution> <phase>package</phase> <goals> <goal>jarjar</goal> </goals> <configuration> <includes> <include>com.google.code.findbugs:jsr305</include> <include>org.easytesting:fest-reflect</include> <include>org.easytesting:fest-util</include> </includes> <rules> <rule> <pattern>javax.annotation.**</pattern> <result>org.assertj.swing.dependency.jsr305.@1</result> </rule> <rule> <pattern>org.fest.reflect.**</pattern> <result>org.assertj.swing.dependency.fest_reflect.@1</result> </rule> <rule> <pattern>org.fest.util.**</pattern> <result>org.assertj.swing.dependency.fest_util.@1</result> </rule> <keep> <pattern>org.assertj.swing.**</pattern> </keep> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.17.2</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <type>jar</type> <version>3.0.2</version> <optional>true</optional> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-reflect</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-util</artifactId> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>com.googlecode.multithreadedtc</groupId> <artifactId>multithreadedtc</artifactId> <version>1.01</version> <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <scope>test</scope> </dependency> </dependencies> </project>