This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-downloader.git
commit c8c190b58cb249479634150c9e35dbe69869294b Author: Jason van Zyl <[email protected]> AuthorDate: Thu Nov 16 22:44:29 2006 +0000 o adding component requirements o using the CDC git-svn-id: https://svn.apache.org/repos/asf/maven/shared/trunk@475955 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 16 ++++++++++++++++ .../maven/shared/downloader/DefaultDownloader.java | 6 ++++++ 2 files changed, 22 insertions(+) diff --git a/pom.xml b/pom.xml index 180ba5e..de7acf1 100644 --- a/pom.xml +++ b/pom.xml @@ -29,4 +29,20 @@ <scope>test</scope> </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-maven-plugin</artifactId> + <version>1.1</version> + <executions> + <execution> + <goals> + <goal>descriptor</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> diff --git a/src/main/java/org/apache/maven/shared/downloader/DefaultDownloader.java b/src/main/java/org/apache/maven/shared/downloader/DefaultDownloader.java index 4ec715a..658e680 100644 --- a/src/main/java/org/apache/maven/shared/downloader/DefaultDownloader.java +++ b/src/main/java/org/apache/maven/shared/downloader/DefaultDownloader.java @@ -17,8 +17,14 @@ import java.io.File; public class DefaultDownloader implements Downloader { + /** + * @plexus.requirement + */ private ArtifactResolver artifactResolver; + /** + * @plexus.requirement + */ private ArtifactFactory artifactFactory; public File download( String groupId, -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
