You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2020/02/03 17:00:01 UTC

[commons-compress] branch master updated: pax-exam doesn't use https for Maven Central by default

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


The following commit(s) were added to refs/heads/master by this push:
     new 151e0fb  pax-exam doesn't use https for Maven Central by default
151e0fb is described below

commit 151e0fb3fa241887ae3192cc92c572401c6a182b
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Mon Feb 3 17:59:18 2020 +0100

    pax-exam doesn't use https for Maven Central by default
    
    this breaks building on a fresh clone
---
 src/test/java/org/apache/commons/compress/OsgiITest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/java/org/apache/commons/compress/OsgiITest.java b/src/test/java/org/apache/commons/compress/OsgiITest.java
index 2e9a07a..ab81cb2 100644
--- a/src/test/java/org/apache/commons/compress/OsgiITest.java
+++ b/src/test/java/org/apache/commons/compress/OsgiITest.java
@@ -46,6 +46,8 @@ public class OsgiITest {
     public Option[] config() {
         return new Option[] {
             systemProperty("pax.exam.osgi.unresolved.fail").value("true"),
+            systemProperty("org.ops4j.pax.url.mvn.useFallbackRepositories").value("false"),
+            systemProperty("org.ops4j.pax.url.mvn.repositories").value("https://repo.maven.apache.org/maven2"),
             mavenBundle().groupId("org.apache.felix").artifactId("org.apache.felix.scr")
                 .version("2.0.14"),
             mavenBundle().groupId("org.apache.felix").artifactId("org.apache.felix.configadmin")