jqf-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>edu.berkeley.cs.jqf</groupId> <artifactId>jqf-maven-plugin</artifactId> <version>2.0</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/xsd/maven-4.0.0.xsd"> <parent> <groupId>edu.berkeley.cs.jqf</groupId> <artifactId>jqf</artifactId> <version>2.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jqf-maven-plugin</artifactId> <name>jqf-maven-plugin</name> <description>JQF: Feedback-directed Quickcheck for Java - Maven plugin</description> <packaging>maven-plugin</packaging> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.5.3</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.5.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.5.3</version> </dependency> <dependency> <groupId>edu.berkeley.cs.jqf</groupId> <artifactId>jqf-instrument</artifactId> </dependency> <dependency> <groupId>edu.berkeley.cs.jqf</groupId> <artifactId>jqf-fuzz</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.5.1</version> </plugin> </plugins> </build> </project>