coverage
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.quicktheories</groupId> <artifactId>coverage</artifactId> <version>0.26</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"> <parent> <artifactId>quicktheories-parent</artifactId> <groupId>org.quicktheories</groupId> <version>0.26</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>coverage</artifactId> <name>coverage</name> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.1</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <argLine>-Xms512m -Xmx512m -XX:MaxMetaspaceSize=128m</argLine> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.ow2.asm:*</include> </includes> </artifactSet> <transformers> <transformer> <manifestEntries> <Agent-Class>org.quicktheories.coverage.Agent</Agent-Class> <Can-Redefine-Classes>true</Can-Redefine-Classes> <Can-Retransform-Classes>true</Can-Retransform-Classes> <Premain-Class>org.quicktheories.coverage.Agent</Premain-Class> </manifestEntries> </transformer> </transformers> <relocations> <relocation> <pattern>org.objectweb.asm</pattern> <shadedPattern>org.quicktheories.coverage.reloc.asm</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.quicktheories</groupId> <artifactId>quicktheories</artifactId> <version>0.26</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>7.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.13.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>system-rules</artifactId> <version>1.13.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <version>2.4.2</version> <scope>test</scope> </dependency> </dependencies> <properties> <asm.version>7.0</asm.version> </properties> </project>