[maven-scm-plugin] prepare release 1.8

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@404920 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl
2006-05-08 04:17:38 +00:00
parent 2c125892c7
commit 5ec2bbc0a8
2 changed files with 36 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
@@ -16,13 +17,12 @@
* limitations under the License.
*/
-->
<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
<extend>../plugins-parent/project.xml</extend>
<pomVersion>3</pomVersion>
<id>maven-test-plugin</id>
<name>Maven Test Plugin</name>
<currentVersion>1.8-SNAPSHOT</currentVersion>
<currentVersion>1.8</currentVersion>
<description>Run JUnit tests.</description>
<shortDescription>Run JUnit tests</shortDescription>
<versions>
@@ -51,6 +51,11 @@
<name>1.7</name>
<tag>MAVEN_TEST_1_7</tag>
</version>
<version>
<id>1.8</id>
<name>1.8</name>
<tag>MAVEN_TEST_1_8</tag>
</version>
</versions>
<dependencies>
<dependency>

View File

@@ -23,17 +23,36 @@
<author email="dion@multitask.com.au">dIon Gillard</author>
</properties>
<body>
<release version="1.8-SNAPSHOT" date="in SVN">
<release version="1.8" date="2006-05-07">
<action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the xml-resolver dependency for xerces.</action>
<action dev="aheritier" type="update">Upgrade to Junit 3.8.2.</action>
<action dev="ltheussl" type="fix" issue="MPTEST-49"><code>test:test</code> should honour the <code>maven.test.compile.src.set</code> variable.</action>
<action dev="ltheussl" type="add" issue="MPTEST-43">Set junit's <code>showoutput</code> attribute if Maven is executed in debug (-X) mode.</action>
<action dev="ltheussl" type="add" issue="MPTEST-47" due-to="Henning Schmiedehausen">Allow to add additional elements to the test classpath, new property <code>maven.test.classpath</code>.</action>
<action dev="ltheussl" type="add" issue="MPTEST-36">Display a warning if some tests do not pass (and <code>maven.test.failure.ignore=true</code>).</action>
<action dev="ltheussl" type="add" issue="MPTEST-10">Add timeouts to the test plugin, new property <code>maven.junit.timeout</code>.</action>
<action dev="ltheussl" type="add" issue="MPTEST-58" due-to="Mauro Botelho">Add ability to fail the build on test errors, new property <code>maven.test.error.ignore</code>.</action>
<action dev="ltheussl" type="fix" issue="MPTEST-46">Do not execute <code>test:test-resources</code> and <code>test:compile</code> unless tests will be run.</action>
<action dev="ltheussl" type="fix" issue="MPTEST-59"><code>test:single</code> should ignore <code>maven.test.skip=true</code>.</action>
<action dev="ltheussl" type="fix" issue="MPTEST-49">
<code>test:test</code>should honour the
<code>maven.test.compile.src.set</code>variable.
</action>
<action dev="ltheussl" type="add" issue="MPTEST-43">Set junit's
<code>showoutput</code>attribute if Maven is executed in debug (-X) mode.
</action>
<action dev="ltheussl" type="add" issue="MPTEST-47" due-to="Henning Schmiedehausen">Allow to add additional elements to the test classpath, new property
<code>maven.test.classpath</code>.
</action>
<action dev="ltheussl" type="add" issue="MPTEST-36">Display a warning if some tests do not pass (and
<code>maven.test.failure.ignore=true</code>).
</action>
<action dev="ltheussl" type="add" issue="MPTEST-10">Add timeouts to the test plugin, new property
<code>maven.junit.timeout</code>.
</action>
<action dev="ltheussl" type="add" issue="MPTEST-58" due-to="Mauro Botelho">Add ability to fail the build on test errors, new property
<code>maven.test.error.ignore</code>.
</action>
<action dev="ltheussl" type="fix" issue="MPTEST-46">Do not execute
<code>test:test-resources</code>and
<code>test:compile</code>unless tests will be run.
</action>
<action dev="ltheussl" type="fix" issue="MPTEST-59">
<code>test:single</code>should ignore
<code>maven.test.skip=true</code>.
</action>
<action dev="ltheussl" type="fix" issue="MPTEST-39">Test failure doesn't halt execution of test suite.</action>
<action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins.</action>
<action dev="brett" type="add" due-to="Eric Hartmann" issue="MPTEST-55">Add maven.test.excludeXmlApis property to avoid duplicated Xerces</action>