This is an automated email from the ASF dual-hosted git repository. jbonofre pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/karaf.git
commit b61918743a6fec4e64ae4528e854bbfff93c630d Author: Jean-Baptiste Onofré <[email protected]> AuthorDate: Tue Dec 12 07:32:41 2017 +0100 [KARAF-5525] Add tinybundles in MavenResolver itests --- .../karaf/itests/mavenresolver/KarafMinimalMonitoredTestSupport.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/itests/src/test/java/org/apache/karaf/itests/mavenresolver/KarafMinimalMonitoredTestSupport.java b/itests/src/test/java/org/apache/karaf/itests/mavenresolver/KarafMinimalMonitoredTestSupport.java index 570f74b..7827cfe 100644 --- a/itests/src/test/java/org/apache/karaf/itests/mavenresolver/KarafMinimalMonitoredTestSupport.java +++ b/itests/src/test/java/org/apache/karaf/itests/mavenresolver/KarafMinimalMonitoredTestSupport.java @@ -22,6 +22,7 @@ import static org.apache.karaf.itests.KarafTestSupport.MIN_RMI_REG_PORT; import static org.apache.karaf.itests.KarafTestSupport.MIN_RMI_SERVER_PORT; import static org.ops4j.pax.exam.CoreOptions.composite; import static org.ops4j.pax.exam.CoreOptions.maven; +import static org.ops4j.pax.exam.CoreOptions.mavenBundle; import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.configureSecurity; import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.editConfigurationFilePut; import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.karafDistributionConfiguration; @@ -84,6 +85,8 @@ public abstract class KarafMinimalMonitoredTestSupport { // enable JMX RBAC security, thanks to the KarafMBeanServerBuilder configureSecurity().disableKarafMBeanServerBuilder(), logLevel(LogLevelOption.LogLevel.INFO), + mavenBundle().groupId("biz.aQute.bnd").artifactId("biz.aQute.bndlib").version("3.5.0"), + mavenBundle().groupId("org.ops4j.pax.tinybundles").artifactId("tinybundles").versionAsInProject(), editConfigurationFilePut("etc/org.apache.karaf.management.cfg", "rmiRegistryPort", rmiRegistryPort), editConfigurationFilePut("etc/org.apache.karaf.management.cfg", "rmiServerPort", rmiServerPort), editConfigurationFilePut("etc/startup.properties", "file:../../" + new File(url.toURI()).getName(), "1"), -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
