This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-hc-it.git
commit 9837ba97d44d70fb8452d46e21bf50f29dd1c147 Author: Robert Munteanu <[email protected]> AuthorDate: Thu Sep 29 13:50:22 2016 +0000 SLING-6074 - Healthcheck ITs fail in isolated job on Jenkins Manually define the repositories to be used by pax-exam. I had to define both manually as just adding the apache snapshots one resulted in maven central no longer being used. git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1762778 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/java/org/apache/sling/hc/it/core/U.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/java/org/apache/sling/hc/it/core/U.java b/src/test/java/org/apache/sling/hc/it/core/U.java index 38b3f91..514066a 100644 --- a/src/test/java/org/apache/sling/hc/it/core/U.java +++ b/src/test/java/org/apache/sling/hc/it/core/U.java @@ -22,6 +22,7 @@ import static org.ops4j.pax.exam.CoreOptions.junitBundles; import static org.ops4j.pax.exam.CoreOptions.mavenBundle; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.CoreOptions.provision; +import static org.ops4j.pax.exam.CoreOptions.repository; import static org.ops4j.pax.exam.CoreOptions.systemProperty; import static org.ops4j.pax.exam.CoreOptions.when; @@ -67,6 +68,8 @@ public class U { final boolean felixShell = "true".equals(System.getProperty("felix.shell", "false")); return options( + repository("https://repo.maven.apache.org/maven2/").id("central"), + repository("https://repository.apache.org/snapshots/").id("apache-snapshots").allowSnapshots(), when(localRepo.length() > 0).useOptions( systemProperty("org.ops4j.pax.url.mvn.localRepository").value(localRepo) ), -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
