You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2016/05/07 13:24:37 UTC

[12/36] maven-aether git commit: Updated to Eclipse Sisu

Updated to Eclipse Sisu


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

Branch: refs/heads/demo
Commit: 28e37e534ce36ae93d4767b930688126a602b916
Parents: 52f81d2
Author: Benjamin Bentmann <be...@sonatype.com>
Authored: Sat Nov 3 18:55:34 2012 +0100
Committer: Benjamin Bentmann <be...@sonatype.com>
Committed: Sat Nov 3 18:55:34 2012 +0100

----------------------------------------------------------------------
 aether-demo-snippets/pom.xml | 50 ++++++++++++++++++++++++++++++++++-----
 1 file changed, 44 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-aether/blob/28e37e53/aether-demo-snippets/pom.xml
----------------------------------------------------------------------
diff --git a/aether-demo-snippets/pom.xml b/aether-demo-snippets/pom.xml
index 84e990f..f6aaff3 100644
--- a/aether-demo-snippets/pom.xml
+++ b/aether-demo-snippets/pom.xml
@@ -28,11 +28,26 @@
   </description>
 
   <properties>
-  	<aetherVersion>0.9.0-SNAPSHOT</aetherVersion>
+    <aetherVersion>0.9.0-SNAPSHOT</aetherVersion>
     <mavenVersion>3.0.3</mavenVersion>
     <wagonVersion>1.0</wagonVersion>
   </properties>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-utils</artifactId>
+        <version>2.1</version>
+      </dependency>
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+        <version>1.6.2</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <dependencies>
     <dependency>
       <groupId>org.eclipse.aether</groupId>
@@ -98,14 +113,37 @@
       <version>1.2.1</version>
     </dependency>
     <dependency>
-      <groupId>org.codehaus.plexus</groupId>
-      <artifactId>plexus-utils</artifactId>
-      <version>2.1</version>
+      <groupId>org.eclipse.sisu</groupId>
+      <artifactId>org.eclipse.sisu.plexus</artifactId>
+      <version>0.0.0.M1</version>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>com.google.guava</groupId>
+          <artifactId>guava</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>asm</groupId>
+          <artifactId>asm</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.sonatype.sisu</groupId>
+          <artifactId>sisu-guice</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.sonatype.sisu</groupId>
-      <artifactId>sisu-inject-plexus</artifactId>
-      <version>2.3.0</version>
+      <artifactId>sisu-guice</artifactId>
+      <version>3.1.0</version>
+      <classifier>no_aop</classifier>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>aopalliance</groupId>
+          <artifactId>aopalliance</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
 </project>