PR: MAVEN-1739
- Upgrade to HttpClient 3.0. git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@368939 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f841db1164
commit
a9505bc7a9
@ -1,5 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
/*
|
||||
* Copyright 2001-2004 The Apache Software Foundation.
|
||||
@ -22,7 +21,7 @@
|
||||
<pomVersion>3</pomVersion>
|
||||
<id>maven-artifact-plugin</id>
|
||||
<name>Maven Artifact Plugin</name>
|
||||
<currentVersion>1.7</currentVersion>
|
||||
<currentVersion>1.8-SNAPSHOT</currentVersion>
|
||||
<description>Tools to manage artifacts and deployment. *WARNING*: This version of the artifact-plugin requires Maven 1.1. People using Maven 1.0 should NOT use this version of the plugin.</description>
|
||||
<shortDescription>Tools to manage artifacts and deployment</shortDescription>
|
||||
<url>http://maven.apache.org/maven-1.x/reference/plugins/artifact/</url>
|
||||
@ -144,7 +143,16 @@
|
||||
<dependency>
|
||||
<groupId>commons-httpclient</groupId>
|
||||
<artifactId>commons-httpclient</artifactId>
|
||||
<version>2.0.2</version>
|
||||
<version>3.0</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>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>1.2</version>
|
||||
<url>http://jakarta.apache.org/commons/codec/</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>
|
||||
|
||||
@ -24,6 +24,9 @@
|
||||
<author email="vmassol@apache.org">Vincent Massol</author>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.8-SNAPSHOT" date="In SVN">
|
||||
<action dev="aheritier" type="update" issue="MAVEN-1739">Upgrade to HttpClient 3.0.</action>
|
||||
</release>
|
||||
<release version="1.7" date="2005-12-12">
|
||||
<action dev="ltheussl" type="add" issue="MPARTIFACT-57" due-to="Neil Crow">New attribute
|
||||
<code>artifactIdOverride</code>that allows to specify custom names for deployed/installed artifacts.
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
/*
|
||||
* Copyright 2001-2004 The Apache Software Foundation.
|
||||
@ -45,7 +44,16 @@
|
||||
<dependency>
|
||||
<groupId>commons-httpclient</groupId>
|
||||
<artifactId>commons-httpclient</artifactId>
|
||||
<version>2.0.2</version>
|
||||
<version>3.0</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>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>1.2</version>
|
||||
<url>http://jakarta.apache.org/commons/codec/</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>
|
||||
|
||||
@ -24,6 +24,7 @@
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.3-SNAPSHOT" date="in SVN">
|
||||
<action dev="aheritier" type="update" issue="MAVEN-1739">Upgrade to HttpClient 3.0.</action>
|
||||
<action dev="ltheussl" type="fix" issue="MPJIRA-17">Plugin uses deprecated API to retrieve JIRA issues. Now requires at least JIRA 3.3.</action>
|
||||
<action dev="ltheussl" type="add">Add a jira-roadmap report.</action>
|
||||
<action dev="ltheussl" type="update">Layout changes: mimic default JIRA appearance, also show votes.</action>
|
||||
|
||||
@ -96,8 +96,9 @@ maven.jar.ant-launcher=1.6.5
|
||||
maven.jar.ant-trax=1.6.5
|
||||
maven.jar.commons-beanutils=1.6.1
|
||||
maven.jar.commons-cli=1.0-beta-2
|
||||
maven.jar.commons-codec=1.2
|
||||
maven.jar.commons-collections=3.0
|
||||
maven.jar.commons-httpclient=2.0.2
|
||||
maven.jar.commons-httpclient=3.0
|
||||
maven.jar.commons-io=1.0
|
||||
maven.jar.commons-jelly=1.0
|
||||
maven.jar.commons-jelly-tags-ant=1.1
|
||||
@ -116,4 +117,4 @@ maven.jar.wagon-file=1.0-alpha-4
|
||||
maven.jar.wagon-http=1.0-alpha-3
|
||||
maven.jar.wagon-provider-api=1.0-alpha-3
|
||||
|
||||
maven.jar.maven = ${maven.home}/lib/maven.jar
|
||||
maven.jar.maven = ${maven.home}/lib/maven.jar
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user