[maven-scm-plugin] prepare release 1.6.3
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@535817 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ccdf9916f
commit
ccbaeda8d3
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
/*
|
||||
@ -23,7 +23,7 @@
|
||||
<pomVersion>3</pomVersion>
|
||||
<id>maven-war-plugin</id>
|
||||
<name>Maven WAR Plugin</name>
|
||||
<currentVersion>1.6.3-SNAPSHOT</currentVersion>
|
||||
<currentVersion>1.6.3</currentVersion>
|
||||
<description>War Plugin for Maven</description>
|
||||
<shortDescription>War Plugin for Maven</shortDescription>
|
||||
<versions>
|
||||
@ -47,6 +47,11 @@
|
||||
<name>1.6.2</name>
|
||||
<tag>MAVEN_WAR_1_6_2</tag>
|
||||
</version>
|
||||
<version>
|
||||
<id>1.6.3</id>
|
||||
<name>1.6.3</name>
|
||||
<tag>MAVEN_WAR_1_6_3</tag>
|
||||
</version>
|
||||
</versions>
|
||||
<branches/>
|
||||
<developers>
|
||||
|
||||
@ -18,96 +18,89 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<document>
|
||||
<properties>
|
||||
<title>Changes</title>
|
||||
<author email="vmassol@apache.org">Vincent Massol</author>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.6.3-SNAPSHOT" date="in SVN">
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-61">
|
||||
Introduced war.target.filename dependency's property to customize the bundle filename. Note
|
||||
that this property should be used wit the war.target.path property.
|
||||
</action>
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-65">Added maven.war.expansion.excludes property
|
||||
to exclude files during a property expansion copy (Fixes corruption of binary files).
|
||||
Applied property expansion to web.xml handling for consistency. Introduced the maven.war.src.filtering
|
||||
property to control whether filtering is enabled or not when copying webapp resources.
|
||||
</action>
|
||||
<action dev="ltheussl" type="fix" issue="MPWAR-36">Only create tld and lib folders if corresponding dependencies are present.</action>
|
||||
<action dev="ltheussl" type="fix" issue="MPWAR-45" due-to="Kim Dykeman">war:inplace should check for maven.war.src.</action>
|
||||
<action dev="ltheussl" type="fix">
|
||||
<description>Java sources are not compiled when used with maven-test-plugin-1.8 and maven.test.skip=true.</description>
|
||||
<fixes issue="MPWAR-62"/>
|
||||
<dueto name="Nicolas de Loof"/>
|
||||
<dueto name="Shinobu Kawai"/>
|
||||
</action>
|
||||
</release>
|
||||
<release version="1.6.2" date="2006-06-18">
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-58">Manifest file is now generated properly.</action>
|
||||
<action dev="snicoll" type="add" issue="MPWAR-43">Aded the ability to customize the Class-Path entry of the manifest</action>
|
||||
<document>
|
||||
<properties>
|
||||
<title>Changes</title>
|
||||
<author email="vmassol@apache.org">Vincent Massol</author>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.6.3" date="2007-05-07">
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-61">Introduced war.target.filename dependency's property to customize the bundle filename. Note that this property should be used wit the war.target.path property.</action>
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-65">Added maven.war.expansion.excludes property to exclude files during a property expansion copy (Fixes corruption of binary files). Applied property expansion to web.xml handling for consistency. Introduced the maven.war.src.filtering property to control whether filtering is enabled or not when copying webapp resources.</action>
|
||||
<action dev="ltheussl" type="fix" issue="MPWAR-36">Only create tld and lib folders if corresponding dependencies are present.</action>
|
||||
<action dev="ltheussl" type="fix" issue="MPWAR-45" due-to="Kim Dykeman">war:inplace should check for maven.war.src.</action>
|
||||
<action dev="ltheussl" type="fix">
|
||||
<description>Java sources are not compiled when used with maven-test-plugin-1.8 and maven.test.skip=true.</description>
|
||||
<fixes issue="MPWAR-62"/>
|
||||
<dueto name="Nicolas de Loof"/>
|
||||
<dueto name="Shinobu Kawai"/>
|
||||
</action>
|
||||
</release>
|
||||
<release version="1.6.2" date="2006-06-18">
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-58">Manifest file is now generated properly.</action>
|
||||
<action dev="snicoll" type="add" issue="MPWAR-43">Aded the ability to customize the Class-Path entry of the manifest</action>
|
||||
<action dev="snicoll" type="update" issue="MPWAR-49">Added property
|
||||
<code>maven.war.resources.overwrite</code>to control is resources overwrites the ones in the generated webapp directory.
|
||||
</action>
|
||||
<action dev="snicoll" type="update" issue="MPWAR-37" due-to="Troy Poppe">Added ability to expand properties when copying war resources.</action>
|
||||
<action dev="snicoll" type="update" issue="MPWAR-39">Updated wrong documentation regarding web.xml filtering.</action>
|
||||
<action dev="snicoll" type="update" issue="MPWAR-46">Now filtering when copying resources.</action>
|
||||
</action>
|
||||
<action dev="snicoll" type="update" issue="MPWAR-37" due-to="Troy Poppe">Added ability to expand properties when copying war resources.</action>
|
||||
<action dev="snicoll" type="update" issue="MPWAR-39">Updated wrong documentation regarding web.xml filtering.</action>
|
||||
<action dev="snicoll" type="update" issue="MPWAR-46">Now filtering when copying resources.</action>
|
||||
<action dev="snicoll" type="add" issue="MPWAR-52">Added property
|
||||
<code>maven.war.webxml.overwrite</code>to control if the source web.xml overwrite the one in the generated webapp directory.
|
||||
</action>
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-29">Fixed confusing documentation regarding maven.war.classes.includes and excludes properties</action>
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-32">License file is now added properly to the generated war</action>
|
||||
<action dev="brett" type="fix">Remove reference to unused caller tag library to suppress warning</action>
|
||||
<action dev="aheritier" type="update" issue="MPWAR-50">Add support for EJB client code.</action>
|
||||
</release>
|
||||
<release version="1.6.1" date="2004-10-23">
|
||||
</action>
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-29">Fixed confusing documentation regarding maven.war.classes.includes and excludes properties</action>
|
||||
<action dev="snicoll" type="fix" issue="MPWAR-32">License file is now added properly to the generated war</action>
|
||||
<action dev="brett" type="fix">Remove reference to unused caller tag library to suppress warning</action>
|
||||
<action dev="aheritier" type="update" issue="MPWAR-50">Add support for EJB client code.</action>
|
||||
</release>
|
||||
<release version="1.6.1" date="2004-10-23">
|
||||
<action dev="felipeal" type="fix" issue="MPWAR-33">Removed attribute
|
||||
<code>update=true</code>from
|
||||
<code>ant:jar</code>call, so now a fresh WAR is created on each run.
|
||||
</action>
|
||||
</action>
|
||||
<action dev="vmassol" type="update">Made the
|
||||
<code>maven.war.final.name</code>property public as it is required by several other plugins and before this change the only way is for these plugins was to call the non-public
|
||||
<code>war:init</code>goal.
|
||||
</action>
|
||||
<action dev="carlos" type="update">Splitted war:webapp in war:war-resources and war:webapp.</action>
|
||||
<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>
|
||||
<action dev="dion" type="update">Make docs more readable.</action>
|
||||
</release>
|
||||
<release version="1.6" date="2004-05-12">
|
||||
<action dev="brett" type="fix" issue="MPWAR-25">preserve last modified time of source files in the exploded webapp</action>
|
||||
<action dev="brett" type="fix" issue="MPWAR-1">Call test:test regardless of whether sources are present as it contains build logic</action>
|
||||
<action dev="dion" type="fix" issue="MPWAR-24">Remove extra call to java:compile</action>
|
||||
<action dev="dion" type="update" issue="MPWAR-21">Allow automated generation of manifest Class-Path</action>
|
||||
<action dev="dion" type="update" issue="MPWAR-22">Allow customizing of MANIFEST.MF</action>
|
||||
</release>
|
||||
<release version="1.5" date="2004-03-07">
|
||||
<action dev="dion" type="fix" issue="MAVEN-986">Fix for MAVEN-986. Allow resources to be copied when no sources present</action>
|
||||
</action>
|
||||
<action dev="carlos" type="update">Splitted war:webapp in war:war-resources and war:webapp.</action>
|
||||
<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>
|
||||
<action dev="dion" type="update">Make docs more readable.</action>
|
||||
</release>
|
||||
<release version="1.6" date="2004-05-12">
|
||||
<action dev="brett" type="fix" issue="MPWAR-25">preserve last modified time of source files in the exploded webapp</action>
|
||||
<action dev="brett" type="fix" issue="MPWAR-1">Call test:test regardless of whether sources are present as it contains build logic</action>
|
||||
<action dev="dion" type="fix" issue="MPWAR-24">Remove extra call to java:compile</action>
|
||||
<action dev="dion" type="update" issue="MPWAR-21">Allow automated generation of manifest Class-Path</action>
|
||||
<action dev="dion" type="update" issue="MPWAR-22">Allow customizing of MANIFEST.MF</action>
|
||||
</release>
|
||||
<release version="1.5" date="2004-03-07">
|
||||
<action dev="dion" type="fix" issue="MAVEN-986">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="brett" 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="brett" 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" issue="MAVEN-831">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" issue="MAVEN-481">Fixes for MAVEN-481. Bundling of tlds in war is supported.</action>
|
||||
<action dev="michal" type="fix" issue="MAVEN-518">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>
|
||||
</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>
|
||||
</release>
|
||||
</body>
|
||||
</action>
|
||||
<action dev="brett" 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="brett" 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" issue="MAVEN-831">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" issue="MAVEN-481">Fixes for MAVEN-481. Bundling of tlds in war is supported.</action>
|
||||
<action dev="michal" type="fix" issue="MAVEN-518">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>
|
||||
</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>
|
||||
</release>
|
||||
</body>
|
||||
</document>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user