maven-download-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>maven-download-plugin</artifactId> <version>1.1.0</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> <!-- Build description --> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>maven-download-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.1.0</version> <name>Maven Download Plugin</name> <!-- See https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <!-- Build plugins and extensions --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <!-- During release:perform, enable the "release" profile --> <releaseProfiles>release</releaseProfiles> <goals>deploy site:site site:deploy</goals> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> </build> <profiles> <profile> <id>its</id> <build> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> <executions> <execution> <phase>integration-test</phase> <goals> <goal>run</goal> </goals> <configuration> <projectsDirectory>src/it</projectsDirectory> <cloneProjectsTo>target/it</cloneProjectsTo> <invokerPropertiesFile>invoke.properties</invokerPropertiesFile> <postBuildHookScript>verify.groovy</postBuildHookScript> <debug>true</debug> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <!-- Dependencies --> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.0-beta2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> <version>1.2</version> </dependency> </dependencies> <!-- Reporting --> <reporting> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> <configuration> <linkJavadoc>true</linkJavadoc> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <quiet>true</quiet> </configuration> <reportSets> <reportSet> <reports> <report>javadoc</report> </reports> <configuration> <links> <link>http://java.sun.com/javase/1.5.0/docs/api/</link> </links> </configuration> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <configuration> <linkXref>true</linkXref> <targetJdk>${jdk}</targetJdk> <minimumTokens>100</minimumTokens> <rulesets> <!-- Rule sets that come bundled with PMD --> <ruleset>/rulesets/basic.xml</ruleset> <ruleset>/rulesets/braces.xml</ruleset> <ruleset>/rulesets/finalizers.xml</ruleset> <ruleset>/rulesets/imports.xml</ruleset> <ruleset>/rulesets/migrating.xml</ruleset> <ruleset>/rulesets/strings.xml</ruleset> <ruleset>/rulesets/unusedcode.xml</ruleset> </rulesets> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <configuration> <tags> <tag>TODO</tag> <tag>FIXME</tag> <tag>@todo</tag> <tag>@fixme</tag> <tag>@deprecated</tag> </tags> </configuration> </plugin> <plugin> <artifactId>maven-changes-plugin</artifactId> <configuration> <issueLinkTemplate>%URL%/detail?id=%ISSUE%&can=1</issueLinkTemplate> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-changelog-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins> </reporting> <!-- Distribution Management, see https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide and http://maven.apache.org/wagon/wagon-providers/wagon-scm/usage.html --> <distributionManagement> <site> <id>maven-download-plugin</id> <url>scm:git:ssh://git@github.com/maven-download-plugin/maven-download-plugin.git</url> </site> </distributionManagement> <!-- Miscellaneous build properties (SCM, license, issues, etc) --> <description> This is a plugin meant to help maven user to download different files on different protocol in part of maven build. For the first implementation, there will only be a goal that will help downloading a maven artifact from the command line. Future version of the plugin could include web download, ftp download, scp download and so on. </description> <url>https://github.com/maven-download-plugin/maven-download-plugin</url> <developers> <developer> <id>mhoule</id> <name>Marc-Andre Houle</name> <timezone>-4</timezone> <roles> <role>developer</role> <role>lead</role> </roles> </developer> <developer> <id>mistria</id> <name>Mickael Istria (Red Hat Inc.)</name> <organization>JBoss, by Red Hat</organization> <organizationUrl>http://www.jboss.org/tools</organizationUrl> <timezone>+1</timezone> <roles> <role>developer</role> </roles> </developer> </developers> <inceptionYear>2009</inceptionYear> <issueManagement> <system>GitHub</system> <url>https://github.com/maven-download-plugin/maven-download-plugin/issues</url> </issueManagement> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection> scm:git:git://github.com/maven-download-plugin/maven-download-plugin.git </connection> <developerConnection> scm:git:ssh://git@github.com/maven-download-plugin/maven-download-plugin.git </developerConnection> <url>https://github.com/maven-download-plugin/maven-download-plugin</url> </scm> <prerequisites> <maven>2.0</maven> </prerequisites> <organization> <name>Open-Source</name> <url>https://github.com/maven-download-plugin/maven-download-plugin</url> </organization> </project>