You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/01/28 04:54:15 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/developer-activity plugin.properties plugin.jelly

dion        2003/01/27 19:54:15

  Modified:    src/plugins-build/developer-activity plugin.properties
                        plugin.jelly
  Log:
  Clean up usage of properties from other plugins
  
  Revision  Changes    Path
  1.2       +0 -3      jakarta-turbine-maven/src/plugins-build/developer-activity/plugin.properties
  
  Index: plugin.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/developer-activity/plugin.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- plugin.properties	24 Jan 2003 03:46:27 -0000	1.1
  +++ plugin.properties	28 Jan 2003 03:54:15 -0000	1.2
  @@ -4,11 +4,8 @@
   # Activity log plugin.
   # -------------------------------------------------------------------
   
  -maven.src.dir = ${basedir}/src
   maven.build.dir = ${basedir}/target
   
  -maven.docs.dest = ${maven.build.dir}/docs
   maven.docs.outputencoding = ISO-8859-1
   
   maven.activitylog.range = 30
  -maven.changelog.factory = org.apache.maven.cvslib.CvsChangeLogFactory
  
  
  
  1.3       +4 -1      jakarta-turbine-maven/src/plugins-build/developer-activity/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/developer-activity/plugin.jelly,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- plugin.jelly	25 Jan 2003 17:25:24 -0000	1.2
  +++ plugin.jelly	28 Jan 2003 03:54:15 -0000	1.3
  @@ -17,6 +17,9 @@
         <j:set var="maven.mode.online" value="true" />
       </j:if>
   
  +    <j:set var="factory"
  +      value="${pom.getPluginContext('maven-changelog-plugin').getVariable('maven.changelog.factory')}"/>
  +
       <j:choose>
         <j:when test="${maven.mode.online}">
           <j:set var="_connection">${pom.repository.connection}</j:set>
  @@ -38,7 +41,7 @@
               <changelog:changelog
                 basedir="${basedir}"
                 developers="${pom.developers}"
  -              factory="${maven.changelog.factory}"
  +              factory="${factory}"
                 output="${maven.build.dir}/changelog.xml"
                 outputEncoding="${maven.docs.outputencoding}"
                 range="${maven.activitylog.range}"