From: Olivier Lamy Date: Tue, 6 Sep 2011 07:27:40 +0000 (+0000) Subject: fix documentation regarding custom consumer X-Git-Tag: archiva-1.4-M1~381 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=757b5848aa3fc9de0e4dc04ab742d15260040303;p=archiva.git fix documentation regarding custom consumer git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1165530 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/archiva-docs/src/site/apt/customising/writing-consumer.apt b/archiva-docs/src/site/apt/customising/writing-consumer.apt index 5f70365b3..429d6e110 100644 --- a/archiva-docs/src/site/apt/customising/writing-consumer.apt +++ b/archiva-docs/src/site/apt/customising/writing-consumer.apt @@ -2,8 +2,9 @@ Writing a Consumer Plugin ------ Maria Odea Ching + Olivier Lamy ------ - 23 Nov 2007 + 06 Sep 2011 ------ ~~ Licensed to the Apache Software Foundation (ASF) under one @@ -29,6 +30,7 @@ Writing a Consumer Plugin For a sample custom consumer, you can checkout the archiva-consumer-plugin at the archiva sandbox in the SVN repository: + Prior to release 1.4, plexus components are not anymore supported, you must use Spring components. +----+ http://svn.apache.org/repos/asf/archiva/sandbox/archiva-consumer-plugin @@ -43,33 +45,12 @@ http://svn.apache.org/repos/asf/archiva/sandbox/archiva-consumer-plugin +----+ Ex. -@plexus.component role="org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer" - role-hint="discover-new-artifact" - instantiation-strategy="per-lookup" +@Service("knownRepositoryContentConsumer#discover-new-artifact") +@Scope("prototype") where, - role: the interface that your class implements - role-hint: the lookup name of the component (your class/consumer) - instantiation-strategy: how your class will be instantiated -+----+ - - [[3]] Make sure to add the snippet below in the section of the project's pom. This is needed to - generate the components.xml. - -+----+ - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - generate - - descriptor - - - - + Servide: unique id for your consumer. + Scope: the creation strategy prototype or singleton. +----+ [[4]] Package your project by executing 'mvn clean package'