You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2004/07/06 14:37:18 UTC

cvs commit: maven-plugins/war/xdocs changes.xml

brett       2004/07/06 05:37:18

  Modified:    abbot    plugin.jelly
               artifact plugin.jelly
               artifact/xdocs changes.xml
               aspectj  plugin.jelly
               clover   plugin.jelly
               ear      plugin.jelly project.xml
               ear/xdocs changes.xml
               eclipse  plugin.jelly
               idea     plugin.jelly
               java     plugin.jelly
               java/xdocs changes.xml
               javadoc  plugin.jelly
               multiproject plugin.jelly project.xml
               multiproject/xdocs changes.xml
               rar      plugin.jelly
               rar/xdocs changes.xml
               test     plugin.jelly project.xml
               test/xdocs changes.xml
               war      plugin.jelly
               war/xdocs changes.xml
  Log:
  update a bunch of plugin dependency usages
  
  Revision  Changes    Path
  1.3       +1 -0      maven-plugins/abbot/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/abbot/plugin.jelly,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- plugin.jelly	12 Jun 2004 14:15:14 -0000	1.2
  +++ plugin.jelly	6 Jul 2004 12:37:16 -0000	1.3
  @@ -359,6 +359,7 @@
     <define:taglib uri="abbot">
       <define:tag name="dependency-handle">
         <!-- Use this tag to allow this plugin to be loaded into another -->
  +      <echo>DEPRECATED: the use of dependency-handle is deprecated. Please use maven:get/set to modify properties of the abbot plugin</echo>
       </define:tag>
     </define:taglib>
     
  
  
  
  1.10      +1 -2      maven-plugins/artifact/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/artifact/plugin.jelly,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- plugin.jelly	25 Jun 2004 18:37:27 -0000	1.9
  +++ plugin.jelly	6 Jul 2004 12:37:17 -0000	1.10
  @@ -214,8 +214,7 @@
   
     <goal name="artifact:load">
       <ant:echo>
  -      DEPRECATED: you do not need to use artifact:load for plugin dependencies. Instead, use the
  -      xmlns:artifact="artifact" notation
  +      DEPRECATED: you do not need to use artifact:load for plugin dependencies.
       </ant:echo>
     </goal>
   
  
  
  
  1.26      +1 -0      maven-plugins/artifact/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/artifact/xdocs/changes.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- changes.xml	3 Jul 2004 02:05:33 -0000	1.25
  +++ changes.xml	6 Jul 2004 12:37:17 -0000	1.26
  @@ -26,6 +26,7 @@
     </properties>
     <body>
       <release version="1.4-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="update">Deprecated the artifact:load hook goal</action>
         <action dev="brett" type="add">Allow use of distributionSite POM attribute in artifact method</action>
         <action dev="brett" type="update">Update dependencies on commons-*</action>
       </release>
  
  
  
  1.18      +1 -0      maven-plugins/aspectj/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/aspectj/plugin.jelly,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- plugin.jelly	30 Jun 2004 20:45:19 -0000	1.17
  +++ plugin.jelly	6 Jul 2004 12:37:17 -0000	1.18
  @@ -211,6 +211,7 @@
   
         <!-- By calling a goal from the test plugin we ensure that all its 
              properties are loaded and are thus accessible from this plugin -->
  +      <!-- FIXME: remove and use maven:get tag -->
         <test:dependency-handle/>
         <j:set var="testPlugin" value="${pom.getPluginContext('maven-test-plugin')}"/>
   
  
  
  
  1.25      +1 -0      maven-plugins/clover/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/clover/plugin.jelly,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- plugin.jelly	12 Jun 2004 05:20:57 -0000	1.24
  +++ plugin.jelly	6 Jul 2004 12:37:17 -0000	1.25
  @@ -34,6 +34,7 @@
     -->
     <goal name="clover:init">
   
  +    <!-- FIXME: remove and use maven:get tags -->
       <!-- By calling a goal from the java plugin we ensure that all its 
            properties are loaded and are thus accessible from this plugin -->
       <java:dependency-handle/>
  
  
  
  1.19      +3 -1      maven-plugins/ear/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ear/plugin.jelly,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- plugin.jelly	15 Mar 2004 10:54:10 -0000	1.18
  +++ plugin.jelly	6 Jul 2004 12:37:17 -0000	1.19
  @@ -257,7 +257,9 @@
     <!-- to get access to any of this plugin's property. This is          -->
     <!-- temporary, until we get explicit plugin dependencies.            -->
     <!--==================================================================-->    
  -  <goal name="ear:load"/>
  +  <goal name="ear:load">
  +    <echo>DEPRECATED: do not use ear:load, there is no need</echo>
  +  </goal>
      
    
   
  
  
  
  1.33      +1 -1      maven-plugins/ear/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ear/project.xml,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- project.xml	25 Jun 2004 15:24:28 -0000	1.32
  +++ project.xml	6 Jul 2004 12:37:17 -0000	1.33
  @@ -23,7 +23,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-ear-plugin</id>
     <name>Maven EAR Plugin</name>
  -  <currentVersion>1.5</currentVersion>
  +  <currentVersion>1.6-SNAPSHOT</currentVersion>
     <description>Ear Plugin for Maven</description>
     <shortDescription>Ear Plugin for Maven</shortDescription>
     <url>http://maven.apache.org/reference/plugins/ear/</url>
  
  
  
  1.20      +3 -0      maven-plugins/ear/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ear/xdocs/changes.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- changes.xml	16 May 2004 01:33:35 -0000	1.19
  +++ changes.xml	6 Jul 2004 12:37:17 -0000	1.20
  @@ -24,6 +24,9 @@
       <author email="nathan.coast@blueyonder.co.uk">Nathan Coast</author>
     </properties>
     <body>
  +    <release version="1.6-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="update">Deprecated the ear:load hook goal</action>
  +    </release>
       <release version="1.5" date="2004-05-15">
         <action dev="dion" type="update">Ignore generated file in plugin test.</action>
         <action dev="dion" type="fix">Check to make sure maven.ear.src exists before using it.</action>
  
  
  
  1.27      +1 -0      maven-plugins/eclipse/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/eclipse/plugin.jelly,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- plugin.jelly	4 Mar 2004 18:04:37 -0000	1.26
  +++ plugin.jelly	6 Jul 2004 12:37:17 -0000	1.27
  @@ -25,6 +25,7 @@
     xmlns:cactus="cactus"
     xmlns:util="jelly:util">
   
  +  <!-- FIXME: remove and use maven:get -->
     <test:dependency-handle/>
     <cactus:dependency-handle/>
   
  
  
  
  1.12      +2 -2      maven-plugins/idea/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/idea/plugin.jelly,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- plugin.jelly	7 Jun 2004 12:09:40 -0000	1.11
  +++ plugin.jelly	6 Jul 2004 12:37:18 -0000	1.12
  @@ -24,6 +24,7 @@
       xmlns:util="jelly:util"
       xmlns:maven="jelly:maven">
   
  +    <!-- FIXME: remove and use maven:get -->
       <multiproject:dependency-handle />
   
       <!--==================================================================-->
  @@ -67,8 +68,7 @@
           <attainGoal name="idea:module"/>
       </goal>
   
  -    <!-- Depends on war:load to make sure war plugin is loaded (needed by module.jelly) - should use
  -         a dependency handle -->
  +    <!-- FIXME: Depends on war:load to make sure war plugin is loaded (needed by module.jelly), should rely on maven:get -->
       <goal name="idea:module"
           description="Generate IDEA .iml project files"
           prereqs="idea:init,war:load">
  
  
  
  1.29      +1 -0      maven-plugins/java/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/java/plugin.jelly,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- plugin.jelly	12 Jun 2004 23:38:35 -0000	1.28
  +++ plugin.jelly	6 Jul 2004 12:37:18 -0000	1.29
  @@ -153,6 +153,7 @@
     <define:taglib uri="java">
       <define:tag name="dependency-handle">
         <!-- XXX Use this tag to allow this plugin to be loaded into another -->
  +      <echo>DEPRECATED: the use of dependency-handle is deprecated. Please use maven:get/set to modify properties of the java plugin</echo>
       </define:tag>
     </define:taglib>
   </project>
  
  
  
  1.13      +1 -0      maven-plugins/java/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- changes.xml	29 Jun 2004 13:43:16 -0000	1.12
  +++ changes.xml	6 Jul 2004 12:37:18 -0000	1.13
  @@ -26,6 +26,7 @@
     </properties>
     <body>
       <release version="1.5-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="update">Deprecate dependency handle</action>
         <action dev="dion" type="update">Use assert taglib for tests</action>
       </release>
       <release version="1.4" date="2004-05-15">
  
  
  
  1.45      +1 -0      maven-plugins/javadoc/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/javadoc/plugin.jelly,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- plugin.jelly	28 Jun 2004 23:14:24 -0000	1.44
  +++ plugin.jelly	6 Jul 2004 12:37:18 -0000	1.45
  @@ -33,6 +33,7 @@
     <!-- ================================================================== -->
     
     <goal name="javadoc:init" prereqs="xdoc:init">
  +<!-- FIXME: none of this is required -->
       <!-- javadoc plugin properties -->
       <maven:get var="maven.javadoc.additionalparam"  plugin="maven-javadoc-plugin" property="maven.javadoc.additionalparam"/>
       <maven:get var="maven.javadoc.author"           plugin="maven-javadoc-plugin" property="maven.javadoc.author"/>
  
  
  
  1.44      +1 -0      maven-plugins/multiproject/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/multiproject/plugin.jelly,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- plugin.jelly	7 Jun 2004 12:09:54 -0000	1.43
  +++ plugin.jelly	6 Jul 2004 12:37:18 -0000	1.44
  @@ -30,6 +30,7 @@
     <define:taglib uri="multiproject">
       <define:tag name="dependency-handle">
         <!-- this page left intentionally blank -->
  +      <echo>DEPRECATED: the use of dependency-handle is deprecated. Please use maven:get/set to modify properties of the multiproject plugin</echo>
       </define:tag>
     </define:taglib>
   
  
  
  
  1.31      +1 -1      maven-plugins/multiproject/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/multiproject/project.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- project.xml	28 Jun 2004 11:43:36 -0000	1.30
  +++ project.xml	6 Jul 2004 12:37:18 -0000	1.31
  @@ -22,7 +22,7 @@
     <extend>../plugin-parent/project.xml</extend>
     <id>maven-multiproject-plugin</id>
     <name>Maven Multi-Project Plug-in</name>
  -  <currentVersion>1.3.1</currentVersion>
  +  <currentVersion>1.4-SNAPSHOT</currentVersion>
     <description>A plugin to handle the building of multiple projects within maven. Requires Maven 1.0 RC3</description>
     <shortDescription>Multi-Project Plugin for Maven</shortDescription>
     <url>http://maven.apache.org/reference/plugins/multiproject/</url>
  
  
  
  1.26      +3 -0      maven-plugins/multiproject/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/multiproject/xdocs/changes.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- changes.xml	28 Jun 2004 11:43:36 -0000	1.25
  +++ changes.xml	6 Jul 2004 12:37:18 -0000	1.26
  @@ -25,6 +25,9 @@
       <author email="vmassol@apache.org">Vincent Massol</author>
     </properties>
     <body>
  +    <release version="1.4-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="update">Deprecate dependency handle</action>
  +    </release>
       <release version="1.3.1" date="2004-06-28">
         <action dev="brett" type="fix">Build and run plugin against the installed version of Maven</action>
         <action dev="brett" type="fix" issue="MPMULTIPROJECT-31">Make sure source directory exists as some circumstances cause it not to</action>
  
  
  
  1.3       +3 -1      maven-plugins/rar/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/rar/plugin.jelly,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- plugin.jelly	19 Jun 2004 03:15:28 -0000	1.2
  +++ plugin.jelly	6 Jul 2004 12:37:18 -0000	1.3
  @@ -187,7 +187,9 @@
       <!-- to get access to any of this plugin's property. This is          -->
       <!-- temporary, until we get explicit plugin dependencies.            -->
       <!--==================================================================-->
  -    <goal name="rar:load" description="no-op goal"/>
  +    <goal name="rar:load" description="no-op goal">
  +      <echo>DEPRECATED: rar:load is deprecated. Please use maven:get to obtain variables</echo>
  +    </goal>
   
   
   </project>
  
  
  
  1.3       +1 -0      maven-plugins/rar/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/rar/xdocs/changes.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- changes.xml	19 Jun 2004 03:16:28 -0000	1.2
  +++ changes.xml	6 Jul 2004 12:37:18 -0000	1.3
  @@ -25,6 +25,7 @@
     </properties>
     <body>
       <release version="1.1-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="update">Deprecate rar:load hook goal</action>
         <action dev="dion" type="add">Add xdocs/changes.xml</action>
         <action dev="dion" type="fix">Move versions element to correct location in POM</action>
         <action dev="dion" type="fix">Make plugin.jelly ascii for CVS</action>
  
  
  
  1.35      +1 -0      maven-plugins/test/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/plugin.jelly,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- plugin.jelly	5 Jul 2004 21:28:04 -0000	1.34
  +++ plugin.jelly	6 Jul 2004 12:37:18 -0000	1.35
  @@ -421,6 +421,7 @@
     <define:taglib uri="test">
       <define:tag name="dependency-handle">
         <!-- XXX Use this tag to allow this plugin to be loaded into another -->
  +      <echo>DEPRECATED: the use of dependency-handle is deprecated. Please use maven:get/set to modify properties of the test plugin</echo>
       </define:tag>
     </define:taglib>
   </project>
  
  
  
  1.34      +1 -1      maven-plugins/test/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/project.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- project.xml	25 Jun 2004 17:20:48 -0000	1.33
  +++ project.xml	6 Jul 2004 12:37:18 -0000	1.34
  @@ -23,7 +23,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-test-plugin</id>
     <name>Maven Test Plug-in</name>
  -  <currentVersion>1.6.2</currentVersion>
  +  <currentVersion>1.7-SNAPSHOT</currentVersion>
     <description>Run JUnit tests. Requires Maven 1.0 RC2.</description>
     <shortDescription>Run JUnit tests</shortDescription>
     <url>http://maven.apache.org/reference/plugins/test/</url>
  
  
  
  1.22      +3 -0      maven-plugins/test/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/xdocs/changes.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- changes.xml	25 Jun 2004 17:20:48 -0000	1.21
  +++ changes.xml	6 Jul 2004 12:37:18 -0000	1.22
  @@ -24,6 +24,9 @@
       <author email="dion@multitask.com.au">dIon Gillard</author>
     </properties>
     <body>
  +    <release version="1.7-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="update">Deprecate dependency handle</action>
  +    </release>
       <release version="1.6.2" date="2004-06-25">
         <action dev="brett" type="fix" issue="MPTEST-32" due-to="Maxwell Grender-Jones">honour source modifications for test compilation</action>
         <action dev="brett" type="fix" issue="MPTEST-31">handle JVM args correctly in test:match</action>
  
  
  
  1.43      +3 -1      maven-plugins/war/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/war/plugin.jelly,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- plugin.jelly	29 Apr 2004 17:05:41 -0000	1.42
  +++ plugin.jelly	6 Jul 2004 12:37:18 -0000	1.43
  @@ -264,7 +264,9 @@
     <!-- to get access to any of this plugin's property. This is          -->
     <!-- temporary, until we get explicit plugin dependencies.            -->
     <!--==================================================================-->    
  -  <goal name="war:load"/>
  +  <goal name="war:load">
  +    <echo>DEPRECATED: war:load is deprecated, please use maven:get tags</echo>
  +  </goal>
   
   </project>
   
  
  
  
  1.29      +1 -0      maven-plugins/war/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/war/xdocs/changes.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- changes.xml	19 Jun 2004 08:58:52 -0000	1.28
  +++ changes.xml	6 Jul 2004 12:37:18 -0000	1.29
  @@ -25,6 +25,7 @@
     </properties>
     <body>
       <release version="1.7-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="update">Deprecated war:load hook goal</action>
         <action dev="dion" type="fix" issue="MPWAR-22">
           Allow use of maven.war.manifest to specify the manifest file location.
         </action>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org