diff --git a/artemis-server-osgi/pom.xml b/artemis-server-osgi/pom.xml index 2ab3fdabed..50e43fd9ca 100644 --- a/artemis-server-osgi/pom.xml +++ b/artemis-server-osgi/pom.xml @@ -116,6 +116,10 @@ *;scope=compile|runtime + + org.postgresql*;resolution:=optional, + * + <_exportcontents>* diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java index 134dd9a702..75a12a845e 100644 --- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java +++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java @@ -16,13 +16,13 @@ */ package org.apache.activemq.artemis.tests.integration.karaf; +import org.apache.activemq.artemis.tests.util.ActiveMQTestBase; import org.apache.karaf.jaas.boot.principal.RolePrincipal; import org.apache.karaf.jaas.boot.principal.UserPrincipal; import org.apache.karaf.shell.api.console.Session; import org.apache.karaf.shell.api.console.SessionFactory; import org.apache.log4j.Logger; import org.apache.qpid.jms.JmsConnectionFactory; -import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.ops4j.pax.exam.Configuration; @@ -66,7 +66,7 @@ import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.karafDist import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.logLevel; @RunWith(PaxExam.class) -public class ArtemisFeatureTest extends Assert { +public class ArtemisFeatureTest extends ActiveMQTestBase { private static Logger LOG = Logger.getLogger(ArtemisFeatureTest.class.getName());