MAVEN-1712 : Update dependencies to match ones in maven 1.1 core and to unify them between plugins.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@320941 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier
2005-10-13 23:17:23 +00:00
parent f7b516fbde
commit 8cb683d4ef
106 changed files with 886 additions and 373 deletions

View File

@@ -130,12 +130,18 @@
<artifactId>commons-lang</artifactId>
<version>2.0</version>
<url>http://jakarta.apache.org/commons/lang/</url>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-xml</artifactId>
<version>1.0</version>
<version>1.1</version>
<url>http://jakarta.apache.org/commons/jelly/libs/xml/</url>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
@@ -146,11 +152,14 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
<properties>
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
</properties>
</dependency>
<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
<version>b10</version>
<version>1.0</version>
</dependency>
<dependency>
<groupId>saxpath</groupId>
@@ -163,14 +172,15 @@
<version>1.0-FCS-full</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.0.b2</version>
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
<version>2.6.2</version>
<url>http://xml.apache.org/xerces2-j/</url>
</dependency>
<dependency>
<id>xerces</id>
<version>2.4.0</version>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.6.2</version>
<url>http://xml.apache.org/xerces2-j/</url>
</dependency>
<dependency>

View File

@@ -16,8 +16,6 @@
* limitations under the License.
*/
-->
<project>
<pomVersion>3</pomVersion>
<id>test-maven-plugin-plugin</id>
@@ -55,7 +53,7 @@
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-xml</artifactId>
<version>1.0</version>
<version>1.1</version>
<url>http://jakarta.apache.org/commons/jelly/libs/xml/</url>
</dependency>
<dependency>
@@ -67,7 +65,7 @@
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>2.0-rc1</version>
<version>2.0.2</version>
<url>http://jakarta.apache.org/commons/httpclient/</url>
</dependency>
</dependencies>

View File

@@ -24,6 +24,14 @@
</properties>
<body>
<release version="1.7-SNAPSHOT" date="In SVN">
<action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
<ul>
<li>commons-jelly-tags-xml v1.0 -> v1.1</li>
<li>jdom v b10 -> v1.0</li>
<li>xercesImpl v 2.4.0 -> v2.6.2</li>
<li>xml-apis v 1.0.b2 -> xmlParserAPIs v2.6.2</li>
</ul>
</action>
<action dev="ltheussl" type="add" issue="MPPLUGIN-33">Allow plugin-test directory to be changed.</action>
<action dev="ltheussl" type="fix" issue="MPPLUGIN-25" due-to="Jamie McCrindle, Barrie Treloar">NTLM Proxy Problem.</action>
<action dev="carlos" type="fix" issue="MPPLUGIN-26">plugin:download didn't redownload SNAPSHOT plugins.</action>