Updated examples to aether-core:1.0.0
Project: http://git-wip-us.apache.org/repos/asf/maven-aether/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-aether/commit/7648a2b3 Tree: http://git-wip-us.apache.org/repos/asf/maven-aether/tree/7648a2b3 Diff: http://git-wip-us.apache.org/repos/asf/maven-aether/diff/7648a2b3 Branch: refs/heads/demo Commit: 7648a2b353652b00ed6bcc9d2daf5d1d65898b97 Parents: c27ef36 Author: Benjamin Bentmann <bentm...@sonatype.com> Authored: Sat May 24 17:50:38 2014 +0200 Committer: Benjamin Bentmann <bentm...@sonatype.com> Committed: Sat May 24 17:50:38 2014 +0200 ---------------------------------------------------------------------- aether-demo-maven-plugin/pom.xml | 4 ++-- aether-demo-snippets/pom.xml | 4 ++-- .../java/org/eclipse/aether/examples/GetDirectDependencies.java | 2 +- .../main/java/org/eclipse/aether/examples/ResolveArtifact.java | 2 +- .../eclipse/aether/examples/ResolveTransitiveDependencies.java | 2 +- pom.xml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-aether/blob/7648a2b3/aether-demo-maven-plugin/pom.xml ---------------------------------------------------------------------- diff --git a/aether-demo-maven-plugin/pom.xml b/aether-demo-maven-plugin/pom.xml index 46b4cdf..969654c 100644 --- a/aether-demo-maven-plugin/pom.xml +++ b/aether-demo-maven-plugin/pom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - ~ Copyright (c) 2010, 2013 Sonatype, Inc. + ~ Copyright (c) 2010, 2014 Sonatype, Inc. ~ All rights reserved. This program and the accompanying materials ~ are made available under the terms of the Eclipse Public License v1.0 ~ which accompanies this distribution, and is available at @@ -17,7 +17,7 @@ <parent> <groupId>org.eclipse.aether</groupId> <artifactId>aether-demos</artifactId> - <version>0.9.0-SNAPSHOT</version> + <version>1.0.0-SNAPSHOT</version> </parent> <artifactId>aether-demo-maven-plugin</artifactId> http://git-wip-us.apache.org/repos/asf/maven-aether/blob/7648a2b3/aether-demo-snippets/pom.xml ---------------------------------------------------------------------- diff --git a/aether-demo-snippets/pom.xml b/aether-demo-snippets/pom.xml index 0600c2b..57d1a70 100644 --- a/aether-demo-snippets/pom.xml +++ b/aether-demo-snippets/pom.xml @@ -17,7 +17,7 @@ <parent> <groupId>org.eclipse.aether</groupId> <artifactId>aether-demos</artifactId> - <version>0.9.0-SNAPSHOT</version> + <version>1.0.0-SNAPSHOT</version> </parent> <artifactId>aether-demo-snippets</artifactId> @@ -28,7 +28,7 @@ </description> <properties> - <aetherVersion>0.9.0.v20140226</aetherVersion> + <aetherVersion>1.0.0.v20140518</aetherVersion> <mavenVersion>3.1.0</mavenVersion> </properties> http://git-wip-us.apache.org/repos/asf/maven-aether/blob/7648a2b3/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/GetDirectDependencies.java ---------------------------------------------------------------------- diff --git a/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/GetDirectDependencies.java b/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/GetDirectDependencies.java index 4c24e0a..7cccdea 100644 --- a/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/GetDirectDependencies.java +++ b/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/GetDirectDependencies.java @@ -35,7 +35,7 @@ public class GetDirectDependencies RepositorySystemSession session = Booter.newRepositorySystemSession( system ); - Artifact artifact = new DefaultArtifact( "org.eclipse.aether:aether-impl:0.9.0.v20140226" ); + Artifact artifact = new DefaultArtifact( "org.eclipse.aether:aether-impl:1.0.0.v20140518" ); ArtifactDescriptorRequest descriptorRequest = new ArtifactDescriptorRequest(); descriptorRequest.setArtifact( artifact ); http://git-wip-us.apache.org/repos/asf/maven-aether/blob/7648a2b3/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveArtifact.java ---------------------------------------------------------------------- diff --git a/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveArtifact.java b/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveArtifact.java index fd67d53..67ffc4e 100644 --- a/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveArtifact.java +++ b/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveArtifact.java @@ -34,7 +34,7 @@ public class ResolveArtifact RepositorySystemSession session = Booter.newRepositorySystemSession( system ); - Artifact artifact = new DefaultArtifact( "org.eclipse.aether:aether-util:0.9.0.v20140226" ); + Artifact artifact = new DefaultArtifact( "org.eclipse.aether:aether-util:1.0.0.v20140518" ); ArtifactRequest artifactRequest = new ArtifactRequest(); artifactRequest.setArtifact( artifact ); http://git-wip-us.apache.org/repos/asf/maven-aether/blob/7648a2b3/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveTransitiveDependencies.java ---------------------------------------------------------------------- diff --git a/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveTransitiveDependencies.java b/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveTransitiveDependencies.java index 7108a1c..4152b8a 100644 --- a/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveTransitiveDependencies.java +++ b/aether-demo-snippets/src/main/java/org/eclipse/aether/examples/ResolveTransitiveDependencies.java @@ -41,7 +41,7 @@ public class ResolveTransitiveDependencies RepositorySystemSession session = Booter.newRepositorySystemSession( system ); - Artifact artifact = new DefaultArtifact( "org.eclipse.aether:aether-impl:0.9.0.v20140226" ); + Artifact artifact = new DefaultArtifact( "org.eclipse.aether:aether-impl:1.0.0.v20140518" ); DependencyFilter classpathFlter = DependencyFilterUtils.classpathFilter( JavaScopes.COMPILE ); http://git-wip-us.apache.org/repos/asf/maven-aether/blob/7648a2b3/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index d9378c3..11521cd 100644 --- a/pom.xml +++ b/pom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - ~ Copyright (c) 2010, 2013 Sonatype, Inc. + ~ Copyright (c) 2010, 2014 Sonatype, Inc. ~ All rights reserved. This program and the accompanying materials ~ are made available under the terms of the Eclipse Public License v1.0 ~ which accompanies this distribution, and is available at @@ -22,7 +22,7 @@ <groupId>org.eclipse.aether</groupId> <artifactId>aether-demos</artifactId> - <version>0.9.0-SNAPSHOT</version> + <version>1.0.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Aether Demos</name>