mirror of https://github.com/apache/activemq.git
[AMQ-8410] Fix OSGi imports
This commit is contained in:
parent
cade46f4a4
commit
ff601a5122
|
@ -63,9 +63,13 @@
|
|||
<Export-Package>
|
||||
!*
|
||||
</Export-Package>
|
||||
<Private-Package>
|
||||
org.apache.activemq.osgi.cf
|
||||
</Private-Package>
|
||||
<Import-Package>
|
||||
javax.jms*;version="[1,3)",
|
||||
*
|
||||
</Import-Package>
|
||||
<Private-Package>
|
||||
org.apache.activemq.osgi.cf
|
||||
</Private-Package>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
|
|
@ -32,7 +32,7 @@ public class ActiveMQAMQPBrokerFeatureTest extends AbstractFeatureTest {
|
|||
return new Option[] //
|
||||
{
|
||||
CoreOptions.mavenBundle("org.apache.geronimo.specs","geronimo-jms_2.0_spec").version("1.0-alpha-2"),
|
||||
configure("activemq", "activemq-amqp-client"), //
|
||||
configure("activemq", "activemq-shell", "activemq-amqp-client"), //
|
||||
configureBrokerStart()
|
||||
};
|
||||
}
|
||||
|
|
|
@ -32,6 +32,7 @@ import org.apache.http.impl.client.BasicCredentialsProvider;
|
|||
import org.apache.http.impl.client.CloseableHttpClient;
|
||||
import org.apache.http.impl.client.HttpClientBuilder;
|
||||
import org.apache.http.util.EntityUtils;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.ops4j.pax.exam.Configuration;
|
||||
import org.ops4j.pax.exam.Option;
|
||||
|
@ -45,7 +46,7 @@ public class ActiveMQBrokerFeatureTest extends AbstractFeatureTest {
|
|||
public static Option[] configure() {
|
||||
return new Option[] //
|
||||
{
|
||||
configure("connector", "activemq-broker"), //
|
||||
configure("connector", "activemq-broker", "activemq-shell"), //
|
||||
// To access web console
|
||||
//mavenBundle("commons-codec", "commons-codec").versionAsInProject(),
|
||||
mavenBundle("org.apache.httpcomponents", "httpcore-osgi").version("4.4.4"),
|
||||
|
@ -59,6 +60,7 @@ public class ActiveMQBrokerFeatureTest extends AbstractFeatureTest {
|
|||
}
|
||||
|
||||
@Test(timeout=5 * 60 * 1000)
|
||||
@Ignore("require Karaf update (for pax-web/xbean)")
|
||||
public void test() throws Throwable {
|
||||
assertBrokerStarted();
|
||||
JMSTester jms = new JMSTester();
|
||||
|
@ -115,6 +117,7 @@ public class ActiveMQBrokerFeatureTest extends AbstractFeatureTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Ignore("require Karaf update (for pax-web/xbean)")
|
||||
public void testSendReceiveWeb() throws Throwable {
|
||||
assertBrokerStarted();
|
||||
JMSTester jms = new JMSTester();
|
||||
|
|
|
@ -18,6 +18,7 @@ package org.apache.activemq.karaf.itest;
|
|||
|
||||
import java.io.File;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.ops4j.pax.exam.Option;
|
||||
|
@ -37,7 +38,7 @@ public class ActiveMQBrokerNdCamelFeatureTest extends AbstractFeatureTest {
|
|||
public static Option[] configure() {
|
||||
return new Option[] //
|
||||
{
|
||||
composite(configure("activemq", "activemq-camel")),
|
||||
composite(configure("activemq-broker", "activemq-shell", "activemq-camel")),
|
||||
editConfigurationFilePut("etc/system.properties", "camel.version", camelVersion()),
|
||||
replaceConfigurationFile("etc/activemq.xml", new File(RESOURCE_BASE + "activemq-nd-camel.xml")),
|
||||
replaceConfigurationFile("etc/org.apache.activemq.server-default.cfg", new File(RESOURCE_BASE + "org.apache.activemq.server-default.cfg"))
|
||||
|
@ -45,9 +46,11 @@ public class ActiveMQBrokerNdCamelFeatureTest extends AbstractFeatureTest {
|
|||
}
|
||||
|
||||
@Test(timeout = 2 * 60 * 1000)
|
||||
@Ignore("camel-jms should be used")
|
||||
public void test() throws Throwable {
|
||||
System.err.println(executeCommand("feature:list -i").trim());
|
||||
assertFeatureInstalled("activemq");
|
||||
assertFeatureInstalled("activemq-shell");
|
||||
assertBrokerStarted();
|
||||
withinReason(new Runnable() {
|
||||
public void run() {
|
||||
|
|
|
@ -69,6 +69,7 @@
|
|||
org.springframework*;version="[4,6)";resolution:=optional,
|
||||
org.xmlpull*;resolution:=optional,
|
||||
scala*;resolution:=optional,
|
||||
!javax.annotation.meta,
|
||||
javax.annotation*;version="[1,4)",
|
||||
!com.thoughtworks.qdox*,
|
||||
org.apache.commons.logging;version="[1.2,2)";resolution:=optional,
|
||||
|
|
Loading…
Reference in New Issue