Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'm2e-maven-runtime/org.eclipse.m2e.maven.indexer/pom.xml')
-rw-r--r--m2e-maven-runtime/org.eclipse.m2e.maven.indexer/pom.xml14
1 files changed, 9 insertions, 5 deletions
diff --git a/m2e-maven-runtime/org.eclipse.m2e.maven.indexer/pom.xml b/m2e-maven-runtime/org.eclipse.m2e.maven.indexer/pom.xml
index 032568f0..5f362a23 100644
--- a/m2e-maven-runtime/org.eclipse.m2e.maven.indexer/pom.xml
+++ b/m2e-maven-runtime/org.eclipse.m2e.maven.indexer/pom.xml
@@ -29,20 +29,24 @@
<optional>true</optional>
<exclusions>
<exclusion>
- <artifactId>maven-model</artifactId>
<groupId>org.apache.maven</groupId>
+ <artifactId>maven-model</artifactId>
</exclusion>
<exclusion>
- <artifactId>maven-artifact</artifactId>
<groupId>org.apache.maven</groupId>
+ <artifactId>maven-artifact</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.sonatype.sisu</groupId>
+ <artifactId>sisu-inject-plexus</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
- <groupId>org.sonatype.sisu</groupId>
- <artifactId>sisu-inject-plexus</artifactId>
- <version>1.4.3</version>
+ <groupId>org.eclipse.sisu</groupId>
+ <artifactId>org.eclipse.sisu.plexus</artifactId>
+ <version>0.0.0.M2a</version>
<scope>provided</scope>
</dependency>
</dependencies>

Back to the top