You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by if...@apache.org on 2014/08/28 05:17:55 UTC

[2/2] git commit: aether 1.0

aether 1.0

Signed-off-by: Igor Fedorenko <if...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/2909b5a3
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/2909b5a3
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/2909b5a3

Branch: refs/heads/master
Commit: 2909b5a329fd946796428a8e7f46034bc3bcbd2f
Parents: 0ba8fa1
Author: Igor Fedorenko <if...@apache.org>
Authored: Wed Aug 27 23:17:24 2014 -0400
Committer: Igor Fedorenko <if...@apache.org>
Committed: Wed Aug 27 23:17:24 2014 -0400

----------------------------------------------------------------------
 apache-maven/pom.xml          | 6 +++++-
 maven-aether-provider/pom.xml | 8 +++++++-
 maven-compat/pom.xml          | 7 ++++++-
 pom.xml                       | 9 +++++++--
 4 files changed, 25 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/apache-maven/pom.xml
----------------------------------------------------------------------
diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index 8b89c50..f50cce7 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -87,7 +87,11 @@
     </dependency>
     <dependency>
       <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-connector-wagon</artifactId>
+      <artifactId>aether-connector-basic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-transport-wagon</artifactId>
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>

http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-aether-provider/pom.xml
----------------------------------------------------------------------
diff --git a/maven-aether-provider/pom.xml b/maven-aether-provider/pom.xml
index 9c1569e..16e2f64 100644
--- a/maven-aether-provider/pom.xml
+++ b/maven-aether-provider/pom.xml
@@ -91,7 +91,12 @@ under the License.
     <!-- Testing -->
     <dependency>
       <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-connector-wagon</artifactId>
+      <artifactId>aether-connector-basic</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-transport-wagon</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -122,3 +127,4 @@ under the License.
   </build>
 
 </project>
+

http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-compat/pom.xml
----------------------------------------------------------------------
diff --git a/maven-compat/pom.xml b/maven-compat/pom.xml
index 74d9246..b2e0638 100644
--- a/maven-compat/pom.xml
+++ b/maven-compat/pom.xml
@@ -79,7 +79,12 @@
     </dependency>
     <dependency>
       <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-connector-wagon</artifactId>
+      <artifactId>aether-connector-basic</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.aether</groupId>
+      <artifactId>aether-transport-wagon</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 75671d8..5c785fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,7 +60,7 @@
     <cipherVersion>1.7</cipherVersion>
     <modelloVersion>1.8.1</modelloVersion>
     <jxpathVersion>1.3</jxpathVersion>
-    <aetherVersion>0.9.0.M2</aetherVersion>
+    <aetherVersion>1.0.0.v20140518</aetherVersion>
     <slf4jVersion>1.7.5</slf4jVersion>
     <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
     <!-- Control the name of the distribution and information output by mvn -->
@@ -308,7 +308,12 @@
       </dependency>
       <dependency>
         <groupId>org.eclipse.aether</groupId>
-        <artifactId>aether-connector-wagon</artifactId>
+        <artifactId>aether-connector-basic</artifactId>
+        <version>${aetherVersion}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.aether</groupId>
+        <artifactId>aether-transport-wagon</artifactId>
         <version>${aetherVersion}</version>
       </dependency>
       <!--  Commons -->


Re: [2/2] git commit: aether 1.0

Posted by Igor Fedorenko <ig...@ifedorenko.com>.
Thank you, Robert, for the reminder. I updated the jira with fixed
release version and link to git commit.

As far changes on Benjamin's branch. I am not comfortable committing
somebody else's code unless it comes through explicit pull request or
jira attachment. I also generally require corresponding unit and/or
integration tests or at very least an example to demonstrate the problem
before I can vouch for the change myself.

--
Regards,
Igor


On 2014-08-28, 6:00, Robert Scholte wrote:
> Igor,
>
> please bind this change to MNG-5562[1]
> Also, Benjamin advices to change other things as well.
>
> thanks,
> Robert
>
>
> [1] https://jira.codehaus.org/browse/MNG-5562
>
> Op Thu, 28 Aug 2014 05:17:55 +0200 schreef <if...@apache.org>:
>
>> aether 1.0
>>
>> Signed-off-by: Igor Fedorenko <if...@apache.org>
>>
>>
>> Project: http://git-wip-us.apache.org/repos/asf/maven/repo
>> Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/2909b5a3
>> Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/2909b5a3
>> Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/2909b5a3
>>
>> Branch: refs/heads/master
>> Commit: 2909b5a329fd946796428a8e7f46034bc3bcbd2f
>> Parents: 0ba8fa1
>> Author: Igor Fedorenko <if...@apache.org>
>> Authored: Wed Aug 27 23:17:24 2014 -0400
>> Committer: Igor Fedorenko <if...@apache.org>
>> Committed: Wed Aug 27 23:17:24 2014 -0400
>>
>> ----------------------------------------------------------------------
>>  apache-maven/pom.xml          | 6 +++++-
>>  maven-aether-provider/pom.xml | 8 +++++++-
>>  maven-compat/pom.xml          | 7 ++++++-
>>  pom.xml                       | 9 +++++++--
>>  4 files changed, 25 insertions(+), 5 deletions(-)
>> ----------------------------------------------------------------------
>>
>>
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/apache-maven/pom.xml
>>
>> ----------------------------------------------------------------------
>> diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
>> index 8b89c50..f50cce7 100644
>> --- a/apache-maven/pom.xml
>> +++ b/apache-maven/pom.xml
>> @@ -87,7 +87,11 @@
>>      </dependency>
>>      <dependency>
>>        <groupId>org.eclipse.aether</groupId>
>> -      <artifactId>aether-connector-wagon</artifactId>
>> +      <artifactId>aether-connector-basic</artifactId>
>> +    </dependency>
>> +    <dependency>
>> +      <groupId>org.eclipse.aether</groupId>
>> +      <artifactId>aether-transport-wagon</artifactId>
>>      </dependency>
>>      <dependency>
>>        <groupId>org.slf4j</groupId>
>>
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-aether-provider/pom.xml
>>
>> ----------------------------------------------------------------------
>> diff --git a/maven-aether-provider/pom.xml
>> b/maven-aether-provider/pom.xml
>> index 9c1569e..16e2f64 100644
>> --- a/maven-aether-provider/pom.xml
>> +++ b/maven-aether-provider/pom.xml
>> @@ -91,7 +91,12 @@ under the License.
>>      <!-- Testing -->
>>      <dependency>
>>        <groupId>org.eclipse.aether</groupId>
>> -      <artifactId>aether-connector-wagon</artifactId>
>> +      <artifactId>aether-connector-basic</artifactId>
>> +      <scope>test</scope>
>> +    </dependency>
>> +    <dependency>
>> +      <groupId>org.eclipse.aether</groupId>
>> +      <artifactId>aether-transport-wagon</artifactId>
>>        <scope>test</scope>
>>      </dependency>
>>      <dependency>
>> @@ -122,3 +127,4 @@ under the License.
>>    </build>
>> </project>
>> +
>>
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-compat/pom.xml
>>
>> ----------------------------------------------------------------------
>> diff --git a/maven-compat/pom.xml b/maven-compat/pom.xml
>> index 74d9246..b2e0638 100644
>> --- a/maven-compat/pom.xml
>> +++ b/maven-compat/pom.xml
>> @@ -79,7 +79,12 @@
>>      </dependency>
>>      <dependency>
>>        <groupId>org.eclipse.aether</groupId>
>> -      <artifactId>aether-connector-wagon</artifactId>
>> +      <artifactId>aether-connector-basic</artifactId>
>> +      <scope>test</scope>
>> +    </dependency>
>> +    <dependency>
>> +      <groupId>org.eclipse.aether</groupId>
>> +      <artifactId>aether-transport-wagon</artifactId>
>>        <scope>test</scope>
>>      </dependency>
>>      <dependency>
>>
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/pom.xml
>> ----------------------------------------------------------------------
>> diff --git a/pom.xml b/pom.xml
>> index 75671d8..5c785fe 100644
>> --- a/pom.xml
>> +++ b/pom.xml
>> @@ -60,7 +60,7 @@
>>      <cipherVersion>1.7</cipherVersion>
>>      <modelloVersion>1.8.1</modelloVersion>
>>      <jxpathVersion>1.3</jxpathVersion>
>> -    <aetherVersion>0.9.0.M2</aetherVersion>
>> +    <aetherVersion>1.0.0.v20140518</aetherVersion>
>>      <slf4jVersion>1.7.5</slf4jVersion>
>>
>> <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
>>
>>      <!-- Control the name of the distribution and information output
>> by mvn -->
>> @@ -308,7 +308,12 @@
>>        </dependency>
>>        <dependency>
>>          <groupId>org.eclipse.aether</groupId>
>> -        <artifactId>aether-connector-wagon</artifactId>
>> +        <artifactId>aether-connector-basic</artifactId>
>> +        <version>${aetherVersion}</version>
>> +      </dependency>
>> +      <dependency>
>> +        <groupId>org.eclipse.aether</groupId>
>> +        <artifactId>aether-transport-wagon</artifactId>
>>          <version>${aetherVersion}</version>
>>        </dependency>
>>        <!--  Commons -->
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: [2/2] git commit: aether 1.0

Posted by Robert Scholte <rf...@apache.org>.
Hi,

I've had mail contact with Benjamin. We don't have to expect more coding  
 from his side.
It's up to us if we want to integrate some of his proposals.

The extra adjustments are there for:
- MNG-3092
- cycle warnings

Robert

Op Thu, 28 Aug 2014 13:18:19 +0200 schreef Jason van Zyl <ja...@takari.io>:

> If Benjamin has further changes he would like to make, he can do them  
> himself or make PRs with explanations.
>
> On Aug 28, 2014, at 6:00 AM, Robert Scholte <rf...@apache.org> wrote:
>
>> Igor,
>>
>> please bind this change to MNG-5562[1]
>> Also, Benjamin advices to change other things as well.
>>
>> thanks,
>> Robert
>>
>>
>> [1] https://jira.codehaus.org/browse/MNG-5562
>>
>> Op Thu, 28 Aug 2014 05:17:55 +0200 schreef <if...@apache.org>:
>>
>>> aether 1.0
>>>
>>> Signed-off-by: Igor Fedorenko <if...@apache.org>
>>>
>>>
>>> Project: http://git-wip-us.apache.org/repos/asf/maven/repo
>>> Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/2909b5a3
>>> Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/2909b5a3
>>> Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/2909b5a3
>>>
>>> Branch: refs/heads/master
>>> Commit: 2909b5a329fd946796428a8e7f46034bc3bcbd2f
>>> Parents: 0ba8fa1
>>> Author: Igor Fedorenko <if...@apache.org>
>>> Authored: Wed Aug 27 23:17:24 2014 -0400
>>> Committer: Igor Fedorenko <if...@apache.org>
>>> Committed: Wed Aug 27 23:17:24 2014 -0400
>>>
>>> ----------------------------------------------------------------------
>>> apache-maven/pom.xml          | 6 +++++-
>>> maven-aether-provider/pom.xml | 8 +++++++-
>>> maven-compat/pom.xml          | 7 ++++++-
>>> pom.xml                       | 9 +++++++--
>>> 4 files changed, 25 insertions(+), 5 deletions(-)
>>> ----------------------------------------------------------------------
>>>
>>>
>>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/apache-maven/pom.xml
>>> ----------------------------------------------------------------------
>>> diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
>>> index 8b89c50..f50cce7 100644
>>> --- a/apache-maven/pom.xml
>>> +++ b/apache-maven/pom.xml
>>> @@ -87,7 +87,11 @@
>>>     </dependency>
>>>     <dependency>
>>>       <groupId>org.eclipse.aether</groupId>
>>> -      <artifactId>aether-connector-wagon</artifactId>
>>> +      <artifactId>aether-connector-basic</artifactId>
>>> +    </dependency>
>>> +    <dependency>
>>> +      <groupId>org.eclipse.aether</groupId>
>>> +      <artifactId>aether-transport-wagon</artifactId>
>>>     </dependency>
>>>     <dependency>
>>>       <groupId>org.slf4j</groupId>
>>>
>>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-aether-provider/pom.xml
>>> ----------------------------------------------------------------------
>>> diff --git a/maven-aether-provider/pom.xml  
>>> b/maven-aether-provider/pom.xml
>>> index 9c1569e..16e2f64 100644
>>> --- a/maven-aether-provider/pom.xml
>>> +++ b/maven-aether-provider/pom.xml
>>> @@ -91,7 +91,12 @@ under the License.
>>>     <!-- Testing -->
>>>     <dependency>
>>>       <groupId>org.eclipse.aether</groupId>
>>> -      <artifactId>aether-connector-wagon</artifactId>
>>> +      <artifactId>aether-connector-basic</artifactId>
>>> +      <scope>test</scope>
>>> +    </dependency>
>>> +    <dependency>
>>> +      <groupId>org.eclipse.aether</groupId>
>>> +      <artifactId>aether-transport-wagon</artifactId>
>>>       <scope>test</scope>
>>>     </dependency>
>>>     <dependency>
>>> @@ -122,3 +127,4 @@ under the License.
>>>   </build>
>>> </project>
>>> +
>>>
>>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-compat/pom.xml
>>> ----------------------------------------------------------------------
>>> diff --git a/maven-compat/pom.xml b/maven-compat/pom.xml
>>> index 74d9246..b2e0638 100644
>>> --- a/maven-compat/pom.xml
>>> +++ b/maven-compat/pom.xml
>>> @@ -79,7 +79,12 @@
>>>     </dependency>
>>>     <dependency>
>>>       <groupId>org.eclipse.aether</groupId>
>>> -      <artifactId>aether-connector-wagon</artifactId>
>>> +      <artifactId>aether-connector-basic</artifactId>
>>> +      <scope>test</scope>
>>> +    </dependency>
>>> +    <dependency>
>>> +      <groupId>org.eclipse.aether</groupId>
>>> +      <artifactId>aether-transport-wagon</artifactId>
>>>       <scope>test</scope>
>>>     </dependency>
>>>     <dependency>
>>>
>>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/pom.xml
>>> ----------------------------------------------------------------------
>>> diff --git a/pom.xml b/pom.xml
>>> index 75671d8..5c785fe 100644
>>> --- a/pom.xml
>>> +++ b/pom.xml
>>> @@ -60,7 +60,7 @@
>>>     <cipherVersion>1.7</cipherVersion>
>>>     <modelloVersion>1.8.1</modelloVersion>
>>>     <jxpathVersion>1.3</jxpathVersion>
>>> -    <aetherVersion>0.9.0.M2</aetherVersion>
>>> +    <aetherVersion>1.0.0.v20140518</aetherVersion>
>>>     <slf4jVersion>1.7.5</slf4jVersion>
>>>     <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
>>>     <!-- Control the name of the distribution and information output  
>>> by mvn -->
>>> @@ -308,7 +308,12 @@
>>>       </dependency>
>>>       <dependency>
>>>         <groupId>org.eclipse.aether</groupId>
>>> -        <artifactId>aether-connector-wagon</artifactId>
>>> +        <artifactId>aether-connector-basic</artifactId>
>>> +        <version>${aetherVersion}</version>
>>> +      </dependency>
>>> +      <dependency>
>>> +        <groupId>org.eclipse.aether</groupId>
>>> +        <artifactId>aether-transport-wagon</artifactId>
>>>         <version>${aetherVersion}</version>
>>>       </dependency>
>>>       <!--  Commons -->
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>>
>
> Thanks,
>
> Jason
>
> ----------------------------------------------------------
> Jason van Zyl
> Founder,  Apache Maven
> http://twitter.com/jvanzyl
> http://twitter.com/takari_io
> ---------------------------------------------------------
>
> Simplex sigillum veri. (Simplicity is the seal of truth.)
>
>
>
>
>
>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: [2/2] git commit: aether 1.0

Posted by Jason van Zyl <ja...@takari.io>.
If Benjamin has further changes he would like to make, he can do them himself or make PRs with explanations.

On Aug 28, 2014, at 6:00 AM, Robert Scholte <rf...@apache.org> wrote:

> Igor,
> 
> please bind this change to MNG-5562[1]
> Also, Benjamin advices to change other things as well.
> 
> thanks,
> Robert
> 
> 
> [1] https://jira.codehaus.org/browse/MNG-5562
> 
> Op Thu, 28 Aug 2014 05:17:55 +0200 schreef <if...@apache.org>:
> 
>> aether 1.0
>> 
>> Signed-off-by: Igor Fedorenko <if...@apache.org>
>> 
>> 
>> Project: http://git-wip-us.apache.org/repos/asf/maven/repo
>> Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/2909b5a3
>> Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/2909b5a3
>> Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/2909b5a3
>> 
>> Branch: refs/heads/master
>> Commit: 2909b5a329fd946796428a8e7f46034bc3bcbd2f
>> Parents: 0ba8fa1
>> Author: Igor Fedorenko <if...@apache.org>
>> Authored: Wed Aug 27 23:17:24 2014 -0400
>> Committer: Igor Fedorenko <if...@apache.org>
>> Committed: Wed Aug 27 23:17:24 2014 -0400
>> 
>> ----------------------------------------------------------------------
>> apache-maven/pom.xml          | 6 +++++-
>> maven-aether-provider/pom.xml | 8 +++++++-
>> maven-compat/pom.xml          | 7 ++++++-
>> pom.xml                       | 9 +++++++--
>> 4 files changed, 25 insertions(+), 5 deletions(-)
>> ----------------------------------------------------------------------
>> 
>> 
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/apache-maven/pom.xml
>> ----------------------------------------------------------------------
>> diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
>> index 8b89c50..f50cce7 100644
>> --- a/apache-maven/pom.xml
>> +++ b/apache-maven/pom.xml
>> @@ -87,7 +87,11 @@
>>     </dependency>
>>     <dependency>
>>       <groupId>org.eclipse.aether</groupId>
>> -      <artifactId>aether-connector-wagon</artifactId>
>> +      <artifactId>aether-connector-basic</artifactId>
>> +    </dependency>
>> +    <dependency>
>> +      <groupId>org.eclipse.aether</groupId>
>> +      <artifactId>aether-transport-wagon</artifactId>
>>     </dependency>
>>     <dependency>
>>       <groupId>org.slf4j</groupId>
>> 
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-aether-provider/pom.xml
>> ----------------------------------------------------------------------
>> diff --git a/maven-aether-provider/pom.xml b/maven-aether-provider/pom.xml
>> index 9c1569e..16e2f64 100644
>> --- a/maven-aether-provider/pom.xml
>> +++ b/maven-aether-provider/pom.xml
>> @@ -91,7 +91,12 @@ under the License.
>>     <!-- Testing -->
>>     <dependency>
>>       <groupId>org.eclipse.aether</groupId>
>> -      <artifactId>aether-connector-wagon</artifactId>
>> +      <artifactId>aether-connector-basic</artifactId>
>> +      <scope>test</scope>
>> +    </dependency>
>> +    <dependency>
>> +      <groupId>org.eclipse.aether</groupId>
>> +      <artifactId>aether-transport-wagon</artifactId>
>>       <scope>test</scope>
>>     </dependency>
>>     <dependency>
>> @@ -122,3 +127,4 @@ under the License.
>>   </build>
>> </project>
>> +
>> 
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-compat/pom.xml
>> ----------------------------------------------------------------------
>> diff --git a/maven-compat/pom.xml b/maven-compat/pom.xml
>> index 74d9246..b2e0638 100644
>> --- a/maven-compat/pom.xml
>> +++ b/maven-compat/pom.xml
>> @@ -79,7 +79,12 @@
>>     </dependency>
>>     <dependency>
>>       <groupId>org.eclipse.aether</groupId>
>> -      <artifactId>aether-connector-wagon</artifactId>
>> +      <artifactId>aether-connector-basic</artifactId>
>> +      <scope>test</scope>
>> +    </dependency>
>> +    <dependency>
>> +      <groupId>org.eclipse.aether</groupId>
>> +      <artifactId>aether-transport-wagon</artifactId>
>>       <scope>test</scope>
>>     </dependency>
>>     <dependency>
>> 
>> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/pom.xml
>> ----------------------------------------------------------------------
>> diff --git a/pom.xml b/pom.xml
>> index 75671d8..5c785fe 100644
>> --- a/pom.xml
>> +++ b/pom.xml
>> @@ -60,7 +60,7 @@
>>     <cipherVersion>1.7</cipherVersion>
>>     <modelloVersion>1.8.1</modelloVersion>
>>     <jxpathVersion>1.3</jxpathVersion>
>> -    <aetherVersion>0.9.0.M2</aetherVersion>
>> +    <aetherVersion>1.0.0.v20140518</aetherVersion>
>>     <slf4jVersion>1.7.5</slf4jVersion>
>>     <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
>>     <!-- Control the name of the distribution and information output by mvn -->
>> @@ -308,7 +308,12 @@
>>       </dependency>
>>       <dependency>
>>         <groupId>org.eclipse.aether</groupId>
>> -        <artifactId>aether-connector-wagon</artifactId>
>> +        <artifactId>aether-connector-basic</artifactId>
>> +        <version>${aetherVersion}</version>
>> +      </dependency>
>> +      <dependency>
>> +        <groupId>org.eclipse.aether</groupId>
>> +        <artifactId>aether-transport-wagon</artifactId>
>>         <version>${aetherVersion}</version>
>>       </dependency>
>>       <!--  Commons -->
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
> 

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
http://twitter.com/takari_io
---------------------------------------------------------

Simplex sigillum veri. (Simplicity is the seal of truth.)










Re: [2/2] git commit: aether 1.0

Posted by Robert Scholte <rf...@apache.org>.
Igor,

please bind this change to MNG-5562[1]
Also, Benjamin advices to change other things as well.

thanks,
Robert


[1] https://jira.codehaus.org/browse/MNG-5562

Op Thu, 28 Aug 2014 05:17:55 +0200 schreef <if...@apache.org>:

> aether 1.0
>
> Signed-off-by: Igor Fedorenko <if...@apache.org>
>
>
> Project: http://git-wip-us.apache.org/repos/asf/maven/repo
> Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/2909b5a3
> Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/2909b5a3
> Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/2909b5a3
>
> Branch: refs/heads/master
> Commit: 2909b5a329fd946796428a8e7f46034bc3bcbd2f
> Parents: 0ba8fa1
> Author: Igor Fedorenko <if...@apache.org>
> Authored: Wed Aug 27 23:17:24 2014 -0400
> Committer: Igor Fedorenko <if...@apache.org>
> Committed: Wed Aug 27 23:17:24 2014 -0400
>
> ----------------------------------------------------------------------
>  apache-maven/pom.xml          | 6 +++++-
>  maven-aether-provider/pom.xml | 8 +++++++-
>  maven-compat/pom.xml          | 7 ++++++-
>  pom.xml                       | 9 +++++++--
>  4 files changed, 25 insertions(+), 5 deletions(-)
> ----------------------------------------------------------------------
>
>
> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/apache-maven/pom.xml
> ----------------------------------------------------------------------
> diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
> index 8b89c50..f50cce7 100644
> --- a/apache-maven/pom.xml
> +++ b/apache-maven/pom.xml
> @@ -87,7 +87,11 @@
>      </dependency>
>      <dependency>
>        <groupId>org.eclipse.aether</groupId>
> -      <artifactId>aether-connector-wagon</artifactId>
> +      <artifactId>aether-connector-basic</artifactId>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.aether</groupId>
> +      <artifactId>aether-transport-wagon</artifactId>
>      </dependency>
>      <dependency>
>        <groupId>org.slf4j</groupId>
>
> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-aether-provider/pom.xml
> ----------------------------------------------------------------------
> diff --git a/maven-aether-provider/pom.xml  
> b/maven-aether-provider/pom.xml
> index 9c1569e..16e2f64 100644
> --- a/maven-aether-provider/pom.xml
> +++ b/maven-aether-provider/pom.xml
> @@ -91,7 +91,12 @@ under the License.
>      <!-- Testing -->
>      <dependency>
>        <groupId>org.eclipse.aether</groupId>
> -      <artifactId>aether-connector-wagon</artifactId>
> +      <artifactId>aether-connector-basic</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.aether</groupId>
> +      <artifactId>aether-transport-wagon</artifactId>
>        <scope>test</scope>
>      </dependency>
>      <dependency>
> @@ -122,3 +127,4 @@ under the License.
>    </build>
> </project>
> +
>
> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/maven-compat/pom.xml
> ----------------------------------------------------------------------
> diff --git a/maven-compat/pom.xml b/maven-compat/pom.xml
> index 74d9246..b2e0638 100644
> --- a/maven-compat/pom.xml
> +++ b/maven-compat/pom.xml
> @@ -79,7 +79,12 @@
>      </dependency>
>      <dependency>
>        <groupId>org.eclipse.aether</groupId>
> -      <artifactId>aether-connector-wagon</artifactId>
> +      <artifactId>aether-connector-basic</artifactId>
> +      <scope>test</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.aether</groupId>
> +      <artifactId>aether-transport-wagon</artifactId>
>        <scope>test</scope>
>      </dependency>
>      <dependency>
>
> http://git-wip-us.apache.org/repos/asf/maven/blob/2909b5a3/pom.xml
> ----------------------------------------------------------------------
> diff --git a/pom.xml b/pom.xml
> index 75671d8..5c785fe 100644
> --- a/pom.xml
> +++ b/pom.xml
> @@ -60,7 +60,7 @@
>      <cipherVersion>1.7</cipherVersion>
>      <modelloVersion>1.8.1</modelloVersion>
>      <jxpathVersion>1.3</jxpathVersion>
> -    <aetherVersion>0.9.0.M2</aetherVersion>
> +    <aetherVersion>1.0.0.v20140518</aetherVersion>
>      <slf4jVersion>1.7.5</slf4jVersion>
>      <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
>      <!-- Control the name of the distribution and information output by  
> mvn -->
> @@ -308,7 +308,12 @@
>        </dependency>
>        <dependency>
>          <groupId>org.eclipse.aether</groupId>
> -        <artifactId>aether-connector-wagon</artifactId>
> +        <artifactId>aether-connector-basic</artifactId>
> +        <version>${aetherVersion}</version>
> +      </dependency>
> +      <dependency>
> +        <groupId>org.eclipse.aether</groupId>
> +        <artifactId>aether-transport-wagon</artifactId>
>          <version>${aetherVersion}</version>
>        </dependency>
>        <!--  Commons -->

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org