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"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
/*
|
/*
|
||||||
* Copyright 2001-2004 The Apache Software Foundation.
|
* Copyright 2001-2004 The Apache Software Foundation.
|
||||||
@ -22,7 +21,7 @@
|
|||||||
<pomVersion>3</pomVersion>
|
<pomVersion>3</pomVersion>
|
||||||
<id>maven-artifact-plugin</id>
|
<id>maven-artifact-plugin</id>
|
||||||
<name>Maven Artifact Plugin</name>
|
<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>
|
<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>
|
<shortDescription>Tools to manage artifacts and deployment</shortDescription>
|
||||||
<url>http://maven.apache.org/maven-1.x/reference/plugins/artifact/</url>
|
<url>http://maven.apache.org/maven-1.x/reference/plugins/artifact/</url>
|
||||||
@ -144,7 +143,16 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-httpclient</groupId>
|
<groupId>commons-httpclient</groupId>
|
||||||
<artifactId>commons-httpclient</artifactId>
|
<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>
|
<properties>
|
||||||
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
|
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
|
||||||
</properties>
|
</properties>
|
||||||
|
|||||||
@ -24,6 +24,9 @@
|
|||||||
<author email="vmassol@apache.org">Vincent Massol</author>
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<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">
|
<release version="1.7" date="2005-12-12">
|
||||||
<action dev="ltheussl" type="add" issue="MPARTIFACT-57" due-to="Neil Crow">New attribute
|
<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.
|
<code>artifactIdOverride</code>that allows to specify custom names for deployed/installed artifacts.
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
/*
|
/*
|
||||||
* Copyright 2001-2004 The Apache Software Foundation.
|
* Copyright 2001-2004 The Apache Software Foundation.
|
||||||
@ -45,7 +44,16 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-httpclient</groupId>
|
<groupId>commons-httpclient</groupId>
|
||||||
<artifactId>commons-httpclient</artifactId>
|
<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>
|
<properties>
|
||||||
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
|
<comment>This library is already loaded by maven's core. Be careful to use the same version number as in the core.</comment>
|
||||||
</properties>
|
</properties>
|
||||||
|
|||||||
@ -24,6 +24,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.3-SNAPSHOT" date="in SVN">
|
<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="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="add">Add a jira-roadmap report.</action>
|
||||||
<action dev="ltheussl" type="update">Layout changes: mimic default JIRA appearance, also show votes.</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.ant-trax=1.6.5
|
||||||
maven.jar.commons-beanutils=1.6.1
|
maven.jar.commons-beanutils=1.6.1
|
||||||
maven.jar.commons-cli=1.0-beta-2
|
maven.jar.commons-cli=1.0-beta-2
|
||||||
|
maven.jar.commons-codec=1.2
|
||||||
maven.jar.commons-collections=3.0
|
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-io=1.0
|
||||||
maven.jar.commons-jelly=1.0
|
maven.jar.commons-jelly=1.0
|
||||||
maven.jar.commons-jelly-tags-ant=1.1
|
maven.jar.commons-jelly-tags-ant=1.1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user