brett       2004/03/06 17:20:41

  Modified:    war      project.xml
               war/xdocs changes.xml
  Log:
  [maven-scm-plugin] prepare release 1.5
  
  Revision  Changes    Path
  1.20      +12 -6     maven-plugins/war/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/war/project.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- project.xml       4 Mar 2004 18:39:37 -0000       1.19
  +++ project.xml       7 Mar 2004 01:20:41 -0000       1.20
  @@ -1,4 +1,5 @@
   <?xml version="1.0" encoding="UTF-8"?>
  +
   <!-- 
   /*
    * Copyright 2001-2004 The Apache Software Foundation.
  @@ -17,20 +18,20 @@
    */
    -->
   
  -
   <project>
     <extend>../project.xml</extend>
     <pomVersion>3</pomVersion>
     <id>maven-war-plugin</id>
     <name>Maven WAR Plugin</name>
  -  <currentVersion>1.5-SNAPSHOT</currentVersion>
  +  <currentVersion>1.5</currentVersion>
     <description>War Plugin for Maven</description>
     <shortDescription>War Plugin for Maven</shortDescription>
     <url>http://maven.apache.org/reference/plugins/war/</url>
     <siteDirectory>/www/maven.apache.org/reference/plugins/war/</siteDirectory>
     <repository>
  -    <connection>scm:cvs:pserver:[EMAIL 
PROTECTED]:/home/cvspublic:maven/src/plugins-build/war/</connection>
  -    <url>http://cvs.apache.org/viewcvs/maven/src/plugins-build/war/</url>
  +    <connection>scm:cvs:pserver:[EMAIL 
PROTECTED]:/home/cvspublic:maven-plugins/war/</connection>
  +    <developerConnection>scm:cvs:ext:[EMAIL 
PROTECTED]:/home/cvs:maven-plugins/war/</developerConnection>
  +    <url>http://cvs.apache.org/viewcvs/maven-plugins/war/</url>
     </repository>
     <versions>
       <version>
  @@ -38,6 +39,11 @@
         <name>1.5</name>
         <tag>HEAD</tag>
       </version>
  +    <version>
  +      <id>1.5</id>
  +      <name>1.5</name>
  +      <tag>MAVEN_WAR_1_5</tag>
  +    </version>
     </versions>
     <branches/>
     <mailingLists/>
  @@ -59,7 +65,7 @@
         <roles>
           <role>Java Developer</role>
         </roles>
  -    </developer>    
  +    </developer>
       <developer>
         <name>Brett Porter</name>
         <id>bporter</id>
  @@ -68,7 +74,7 @@
         <roles>
           <role>Java Developer</role>
         </roles>
  -    </developer>    
  +    </developer>
     </developers>
     <dependencies/>
   </project>
  
  
  
  1.19      +21 -73    maven-plugins/war/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/war/xdocs/changes.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- changes.xml       4 Mar 2004 18:39:37 -0000       1.18
  +++ changes.xml       7 Mar 2004 01:20:41 -0000       1.19
  @@ -1,4 +1,5 @@
  -<?xml version="1.0"?>
  +<?xml version="1.0" encoding="UTF-8"?>
  +
   <!-- 
   /*
    * Copyright 2001-2004 The Apache Software Foundation.
  @@ -22,87 +23,34 @@
       <title>Changes</title>
       <author email="[EMAIL PROTECTED]">Vincent Massol</author>
     </properties>
  -
     <body>
  -
  -    <release version="1.5" date="in CVS">
  -      <action dev="dion" type="fix">
  -        Fix for MAVEN-986. Allow resources to be copied when no sources present
  -      </action>
  -      <action dev="vmassol" type="add">
  -        Use the new <code>caller</code> plugin to isolate the 
  -        java compilation goal called from its implementation.
  -      </action>
  -      <action dev="bporter" type="add">
  -        Add war:inplace goal for building the webapp into maven.war.src. You should 
cvsignore WEB-INF/lib and
  -        WEB-INF/classes
  -      </action>
  -      <action dev="bporter" type="add">
  -        Add target path to dependencies so you can copy to elsewhere than 
WEB-INF/lib. Useful for applets.
  +    <release version="1.5" date="2004-03-07">
  +      <action dev="dion" type="fix">Fix for MAVEN-986. Allow resources to be copied 
when no sources present</action>
  +      <action dev="vmassol" type="add">Use the new
  +        <code>caller</code>plugin to isolate the java compilation goal called from 
its implementation.
         </action>
  +      <action dev="bporter" type="add">Add war:inplace goal for building the webapp 
into maven.war.src. You should cvsignore WEB-INF/lib and WEB-INF/classes</action>
  +      <action dev="bporter" type="add">Add target path to dependencies so you can 
copy to elsewhere than WEB-INF/lib. Useful for applets.</action>
       </release>
  -
       <release version="1.4" date="2003-09-29">
  -      <action dev="dion" type="update">
  -        Apply MAVEN-831.
  -        Copy web.xml as specified by ${maven.war.webxml}
  -      </action>
  +      <action dev="dion" type="update">Apply MAVEN-831. Copy web.xml as specified 
by ${maven.war.webxml}</action>
         <action dev="dion" type="update">Add test project</action>
  -      <action dev="evenisse" type="add">
  -       Added maven.war.index property. 
  -      </action>
  -      <action dev="rafal" type="add">
  -       Accept includes/excludes patterns over maven.war.src. 
  -      </action>
  -      <action dev="evenisse" type="fix">
  -       Allow webapp creation if project doesn't have sources.
  -      </action>
  -      <action dev="michal" type="fix">
  -       Added war:clean goal
  -      </action>
  -      <action dev="michal" type="fix">
  -        war:war goal is simply packaging
  -        (using ant jar task) the directory created
  -        by war:webapp goal. This change simplifies
  -        the customization of processing 
  -        and removes code duplication.
  -      </action>
  -      <action dev="michal" type="fix">
  -        Fixes for MAVEN-481. 
  -        Bundling of tlds in war is supported.
  -      </action>
  -      <action dev="michal" type="fix">
  -        Fixes for MAVEN-518.
  -        Artifact processing in the plugin 
  -        was slightly changed and now 
  -        it supports jar overriding mechanism
  -      </action>
  -      <action dev="michal" type="add">
  -        Added deploy, deploy-snapshot and install-snapshot goals
  -      </action>
  -      <action dev="dion" type="fix" due-to="Ben Hogan">
  -        Allow war file to be updated
  -      </action>      
  +      <action dev="evenisse" type="add">Added maven.war.index property.</action>
  +      <action dev="rafal" type="add">Accept includes/excludes patterns over 
maven.war.src.</action>
  +      <action dev="evenisse" type="fix">Allow webapp creation if project doesn't 
have sources.</action>
  +      <action dev="michal" type="fix">Added war:clean goal</action>
  +      <action dev="michal" type="fix">war:war goal is simply packaging (using ant 
jar task) the directory created by war:webapp goal. This change simplifies the 
customization of processing and removes code duplication.</action>
  +      <action dev="michal" type="fix">Fixes for MAVEN-481. Bundling of tlds in war 
is supported.</action>
  +      <action dev="michal" type="fix">Fixes for MAVEN-518. Artifact processing in 
the plugin was slightly changed and now it supports jar overriding mechanism</action>
  +      <action dev="michal" type="add">Added deploy, deploy-snapshot and 
install-snapshot goals</action>
  +      <action dev="dion" type="fix" due-to="Ben Hogan">Allow war file to be 
updated</action>
       </release>
  -    
       <release version="1.3" date="2002-04-08">
  -      <action dev="dion" type="fix" due-to="Florin Vancea">
  -        Fixed the broken war goal
  -      </action>
  +      <action dev="dion" type="fix" due-to="Florin Vancea">Fixed the broken war 
goal</action>
       </release>
  -    
       <release version="1.2" date="2002-02-12">
  -      <action dev="jvanzyl" type="add">
  -        Moved the detection of the webSources inside the 'war:war' goal
  -        itself so that webSource can be assembled on the fly. With the
  -        detection outside the 'war:war' goal webSources would not be
  -        gathered into the resulting WAR file.
  -      </action>
  -      <action dev="vmassol" type="add">
  -        Added support for WARs that contain only java classes and no web
  -        resources.
  -      </action>
  +      <action dev="jvanzyl" type="add">Moved the detection of the webSources inside 
the 'war:war' goal itself so that webSource can be assembled on the fly. With the 
detection outside the 'war:war' goal webSources would not be gathered into the 
resulting WAR file.</action>
  +      <action dev="vmassol" type="add">Added support for WARs that contain only 
java classes and no web resources.</action>
       </release>
     </body>
   </document>
  -
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to