From 7843fba86f5b123755eb53d19f7a001312897a72 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Sun, 17 Jun 2018 11:02:08 -0400 Subject: [PATCH] Fix pax exam issue auto-release is all of a sudden seeing these failure for the ToasterTest: 2018-06-17T01:54:27,557 | WARN | pool-2-thread-1 | AetherBasedResolver | 2 - org.ops4j.pax.url.mvn - 2.5.4 | Error resolving artifact org.ops4j.pax.tipi:org.ops4j.pax.tipi.junit:jar:4.12.0.1: [Could not find artifact org.ops4j.pax.tipi:org.ops4j.pax.tipi.junit:jar:4.12.0.1 in defaultlocal (file:/tmp/r/), Could not find artifact org.ops4j.pax.tipi:org.ops4j.pax.tipi.junit:jar:4.12.0.1 in system.repository (file:/w/workspace/autorelease-release-oxygen/controller/opendaylight/md-sal/samples/toaster-it/target/exam/f302a2c9-2cc5-40dc-8c2b-02b85c0fe216/system/)] 2018-06-17T01:54:27,557 | WARN | pool-2-thread-3 | AetherBasedResolver | 2 - org.ops4j.pax.url.mvn - 2.5.4 | Error resolving artifact org.ops4j.pax.tipi:org.ops4j.pax.tipi.hamcrest.core:jar:1.3.0.1: [Could not find artifact org.ops4j.pax.tipi:org.ops4j.pax.tipi.hamcrest.core:jar:1.3.0.1 in defaultlocal (file:/tmp/r/), Could not find artifact org.ops4j.pax.tipi:org.ops4j.pax.tipi.hamcrest.core:jar:1.3.0.1 in system.repository (file:/w/workspace/autorelease-release-oxygen/controller/opendaylight/md-sal/samples/toaster-it/target/exam/f302a2c9-2cc5-40dc-8c2b-02b85c0fe216/system/)] I was able to repro locally by removing the org.ops4j.pax.tipi.hamcrest.junit and org.ops4j.pax.tipi.hamcrest.core artifacts from ny local .m2 repo. Adding the dependencies to the mdsal-it-base pom causes them to be downloaded and fixes the issue. However it's a mystery why this issue all of a sudden popped up and why it seems we have to explicitly reference those depnedencies. Change-Id: Ic614f243d0a79aa298961a4a340d4fa3fb483843 Signed-off-by: Tom Pantelis --- opendaylight/md-sal/mdsal-it-base/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/opendaylight/md-sal/mdsal-it-base/pom.xml b/opendaylight/md-sal/mdsal-it-base/pom.xml index fa9bc03ee4..043d1d557e 100644 --- a/opendaylight/md-sal/mdsal-it-base/pom.xml +++ b/opendaylight/md-sal/mdsal-it-base/pom.xml @@ -59,6 +59,18 @@ and is available at http://www.eclipse.org/legal/epl-v10.html pax-exam compile + + org.ops4j.pax.tipi + org.ops4j.pax.tipi.junit + 4.12.0.1 + runtime + + + org.ops4j.pax.tipi + org.ops4j.pax.tipi.hamcrest.core + 1.3.0.1 + runtime + org.ops4j.pax.url pax-url-aether -- 2.36.6