git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@415169 13f79535-47bb-0310-9956-ffa450edef68
94 lines
6.5 KiB
XML
94 lines
6.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2004 The Apache Software Foundation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
-->
|
|
<document>
|
|
<properties>
|
|
<title>Changes</title>
|
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
|
</properties>
|
|
<body>
|
|
<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 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 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 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 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>
|
|
</document>
|