quickcheck
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.quickcheck</groupId> <artifactId>quickcheck</artifactId> <version>0.6</version> </dependency>
<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>net.java.quickcheck</groupId> <artifactId>quickcheck</artifactId> <packaging>jar</packaging> <parent> <groupId>net.java.quickcheck</groupId> <artifactId>quickcheck-all</artifactId> <version>0.6</version> </parent> <name>quickcheck-core</name> <properties> <eclipse.generated.src>target/generated-sources/eclipse</eclipse.generated.src> </properties> <dependencies> <dependency> <groupId>net.java.quickcheck</groupId> <artifactId>quickcheck-src-generator</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> <version>2.3</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${eclipse.generated.src}</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadJavadocs>true</downloadJavadocs> <downloadSources>true</downloadSources> <additionalConfig> <file> <name>.settings/org.eclipse.jdt.ui.prefs</name> <location>../src/resources/eclipse/org.eclipse.jdt.ui.prefs</location> </file> <file> <name>.settings/org.eclipse.jdt.core.prefs</name> <location>../src/resources/eclipse/org.eclipse.jdt.core.prefs</location> </file> <file> <name>.factorypath</name> <content> <![CDATA[<factorypath> <factorypathentry kind="VARJAR" id="M2_REPO/net/java/quickcheck-src-generator/${version}/quickcheck-src-generator-${version}.jar" enabled="true" runInBatchMode="false"/> </factorypath> ]]> </content> </file> <file> <name>.settings/org.eclipse.jdt.apt.core.prefs</name> <content><![CDATA[ eclipse.preferences.version=1 org.eclipse.jdt.apt.aptEnabled=true org.eclipse.jdt.apt.genSrcDir=${eclipse.generated.src} org.eclipse.jdt.apt.reconcileEnabled=true ]]> </content> </file> </additionalConfig> </configuration> </plugin> </plugins> </build> </project>