maven-classpath-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.joel1di1</groupId> <artifactId>maven-classpath-plugin</artifactId> <version>1.2.7</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>com.github.joel1di1</groupId> <artifactId>maven-classpath-plugin</artifactId> <name>Maven classpath plugin for FitNesse</name> <version>1.2.7</version> <description>A FitNesse Plugin that generate classpath from a pomFile.</description> <url>http://github.com/joel1di1/fitnesse-maven-classpath</url> <inceptionYear>2009</inceptionYear> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-embedder</artifactId> <version>3.0-alpha-2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.fitnesse</groupId> <artifactId>fitnesse</artifactId> <version>20090818</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> </dependencies> <!-- ADD THIS IF YOU NEED TO DOWNLOAD FITNESSE JARS --> <!-- <repositories>--> <!-- <repository>--> <!-- <id>neuri</id>--> <!-- <url>http://maven.neuri.com/</url>--> <!-- <releases>--> <!-- <enabled>true</enabled>--> <!-- </releases>--> <!-- <snapshots>--> <!-- <enabled>false</enabled>--> <!-- </snapshots>--> <!-- </repository>--> <!-- </repositories>--> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>2.0.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-5</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-jar</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0</version> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.5.0</version> <configuration> <header>src/etc/header.txt</header> <includes> <!-- Only copyright the java --> <include>src/main/java/**</include> <include>src/test/java/**</include> </includes> <properties> <inceptionYear>${project.inceptionYear}</inceptionYear> <year>${year}</year> </properties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-remote-resources-plugin</artifactId> <version>1.1</version> <executions> <execution> <goals> <goal>process</goal> </goals> <configuration> <resourceBundles> <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle> </resourceBundles> </configuration> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:git:http://github.com/joel1di1/fitnesse-maven-classpath.git</connection> <developerConnection>scm:git:git@github.com:joel1di1/fitnesse-maven-classpath.git</developerConnection> <url>http://github.com/joel1di1/fitnesse-maven-classpath</url> </scm> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>joel1di1</id> <name>Benoit Lafontaine</name> <email>joel1di1@gmail.com</email> <url>http://github.com/joel1di1</url> <roles> <role>developer</role> </roles> </developer> <developer> <id>lvonk</id> <name>Lars Vonk</name> <email>lars.vonk@gmail.com</email> <url>http://blog.larsvonkconsultancy.nl</url> <roles> <role>Initial developer</role> </roles> </developer> </developers> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.0-alpha-4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>