You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by ri...@apache.org on 2017/04/11 20:23:29 UTC

[2/3] brooklyn-server git commit: Fix FeatureInstallationTest’s features-repo

Fix FeatureInstallationTest\u2019s features-repo

\u201c@releases\u201d is not a valid option - it creates an empty  directory with 
the suffix \u201c@releases\u201d if the artefacts can\u2019t be found in the other 
repos (e.g. in ~/.m2/repository).

Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/f5025641
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/f5025641
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/f5025641

Branch: refs/heads/master
Commit: f50256418d2f4c9d0a9e82048a6035afb50b3b1c
Parents: afcaa46
Author: Aled Sage <al...@gmail.com>
Authored: Tue Apr 11 20:31:34 2017 +0100
Committer: Aled Sage <al...@gmail.com>
Committed: Tue Apr 11 20:31:34 2017 +0100

----------------------------------------------------------------------
 .../org/apache/brooklyn/karaf/itests/FeatureInstallationTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/f5025641/karaf/itests/src/test/java/org/apache/brooklyn/karaf/itests/FeatureInstallationTest.java
----------------------------------------------------------------------
diff --git a/karaf/itests/src/test/java/org/apache/brooklyn/karaf/itests/FeatureInstallationTest.java b/karaf/itests/src/test/java/org/apache/brooklyn/karaf/itests/FeatureInstallationTest.java
index 7749ff4..a9cf63e 100644
--- a/karaf/itests/src/test/java/org/apache/brooklyn/karaf/itests/FeatureInstallationTest.java
+++ b/karaf/itests/src/test/java/org/apache/brooklyn/karaf/itests/FeatureInstallationTest.java
@@ -76,7 +76,7 @@ public class FeatureInstallationTest extends TestBase {
                 editConfigurationFileExtend(
                     "etc/org.ops4j.pax.url.mvn.cfg",
                     "org.ops4j.pax.url.mvn.repositories",
-                    "file:"+System.getProperty("features.repo")+"@id=local@snapshots@releases"),
+                    "file:"+System.getProperty("features.repo")+"@id=local@snapshots"),
                 logLevel(LogLevelOption.LogLevel.INFO),
         };
     }