Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2014-03-25 11:34:28 +0000
committerIgor Fedorenko2014-03-25 12:20:12 +0000
commit935c4b0ca507be816e00f5d6d6cc98875138d19b (patch)
treecb662c9ea9eb78551e75359aebeb9a3d820a9c8f
parentad26e9d860bb1cc625e5766c128073912ffafc07 (diff)
downloadm2e-core-935c4b0ca507be816e00f5d6d6cc98875138d19b.tar.gz
m2e-core-935c4b0ca507be816e00f5d6d6cc98875138d19b.tar.xz
m2e-core-935c4b0ca507be816e00f5d6d6cc98875138d19b.zip
CQ7954: use newer version of local-repository impl
Change-Id: I70f3b82d60e2bd9723a7e9cff424efadc98f8ecf Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
-rw-r--r--m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml b/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml
index e0b74c6e..c2db5cb1 100644
--- a/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml
+++ b/m2e-maven-runtime/org.eclipse.m2e.maven.runtime/pom.xml
@@ -28,14 +28,14 @@
<!-- below are m2e-specific addons -->
<plexus-build-api.version>0.0.7</plexus-build-api.version>
<okhttp-connector.version>0.0.11</okhttp-connector.version>
- <concurrent-localrepo.version>0.0.4</concurrent-localrepo.version>
+ <concurrent-localrepo.version>0.9.0</concurrent-localrepo.version>
</properties>
<dependencies>
<!-- this overrides default local repo implementation and must be BEFORE maven -->
<dependency>
- <groupId>io.tesla.aether</groupId>
- <artifactId>tesla-concurrent-localrepo</artifactId>
+ <groupId>io.takari.aether</groupId>
+ <artifactId>takari-local-repository</artifactId>
<version>${concurrent-localrepo.version}</version>
</dependency>
@@ -100,6 +100,7 @@
</dependency>
<dependency>
+ <!-- TODO remember to remove io.tesla.* bnd rule -->
<groupId>io.tesla.aether</groupId>
<artifactId>aether-connector-okhttp</artifactId>
<version>${okhttp-connector.version}</version>
@@ -151,6 +152,7 @@
javax.inject.*,
com.squareup.okhttp.*,
io.tesla.*,
+ io.takari.*,
</_exportcontents>
<Import-Package>

Back to the top