diff --git a/activemq-jaas/pom.xml b/activemq-jaas/pom.xml index f52ee08a89..4dcfeb7908 100644 --- a/activemq-jaas/pom.xml +++ b/activemq-jaas/pom.xml @@ -68,23 +68,16 @@ commons-collections test + + commons-io + commons-io + test + org.apache.directory.server apacheds-core-integ ${directory-version} test - - - bouncycastle - bcprov-jdk15 - - - - - org.bouncycastle - bcprov-jdk15 - 1.46 - test org.apache.directory.server diff --git a/activemq-unit-tests/pom.xml b/activemq-unit-tests/pom.xml index 6ef398df5e..d63fed8d5e 100644 --- a/activemq-unit-tests/pom.xml +++ b/activemq-unit-tests/pom.xml @@ -274,18 +274,6 @@ apacheds-core-integ ${directory-version} test - - - bouncycastle - bcprov-jdk15 - - - - - org.bouncycastle - bcprov-jdk15 - 1.46 - test org.apache.directory.server diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationMapLegacyTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationMapLegacyTest.java index 86165f5fe7..fd4ffe74d6 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationMapLegacyTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationMapLegacyTest.java @@ -38,14 +38,14 @@ import org.apache.activemq.command.ActiveMQQueue; import org.apache.activemq.command.ActiveMQTopic; import org.apache.activemq.jaas.GroupPrincipal; import org.apache.activemq.util.Wait; +import org.apache.directory.api.ldap.model.name.Dn; +import org.apache.directory.api.ldap.model.name.Rdn; +import org.apache.directory.api.ldap.model.ldif.LdifEntry; +import org.apache.directory.api.ldap.model.ldif.LdifReader; +import org.apache.directory.api.ldap.model.message.ModifyRequest; +import org.apache.directory.api.ldap.model.message.ModifyRequestImpl; import org.apache.directory.ldap.client.api.LdapConnection; import org.apache.directory.server.core.integ.AbstractLdapTestUnit; -import org.apache.directory.shared.ldap.model.ldif.LdifEntry; -import org.apache.directory.shared.ldap.model.ldif.LdifReader; -import org.apache.directory.shared.ldap.model.message.ModifyRequest; -import org.apache.directory.shared.ldap.model.message.ModifyRequestImpl; -import org.apache.directory.shared.ldap.model.name.Dn; -import org.apache.directory.shared.ldap.model.name.Rdn; import org.junit.After; import org.junit.Before; import org.junit.Test; diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationModuleTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationModuleTest.java index 3f52ed3ee8..b2855716c0 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationModuleTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/security/AbstractCachedLDAPAuthorizationModuleTest.java @@ -18,7 +18,7 @@ package org.apache.activemq.security; import org.apache.activemq.command.ActiveMQQueue; import org.apache.activemq.jaas.UserPrincipal; -import org.apache.directory.shared.ldap.model.message.ModifyRequest; +import org.apache.directory.api.ldap.model.message.ModifyRequest; import org.junit.Test; import java.util.Set; diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyOpenLDAPTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyOpenLDAPTest.java index 5c2764a21c..d6c366d539 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyOpenLDAPTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyOpenLDAPTest.java @@ -19,10 +19,10 @@ package org.apache.activemq.security; import java.io.IOException; import java.io.InputStream; +import org.apache.directory.api.ldap.model.name.Dn; +import org.apache.directory.api.ldap.model.exception.LdapException; import org.apache.directory.ldap.client.api.LdapConnection; import org.apache.directory.ldap.client.api.LdapNetworkConnection; -import org.apache.directory.shared.ldap.model.exception.LdapException; -import org.apache.directory.shared.ldap.model.name.Dn; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyTest.java index 2f00eff12c..aa5f232972 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleLegacyTest.java @@ -16,14 +16,14 @@ */ package org.apache.activemq.security; +import org.apache.directory.api.ldap.model.name.Dn; +import org.apache.directory.api.ldap.model.exception.LdapException; import org.apache.directory.ldap.client.api.LdapConnection; import org.apache.directory.ldap.client.api.LdapNetworkConnection; import org.apache.directory.server.annotations.CreateLdapServer; import org.apache.directory.server.annotations.CreateTransport; import org.apache.directory.server.core.annotations.ApplyLdifFiles; import org.apache.directory.server.core.integ.FrameworkRunner; -import org.apache.directory.shared.ldap.model.exception.LdapException; -import org.apache.directory.shared.ldap.model.name.Dn; import org.junit.runner.RunWith; import java.io.IOException; diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleOpenLDAPTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleOpenLDAPTest.java index 6d0ca9339d..e1a0db23ad 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleOpenLDAPTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleOpenLDAPTest.java @@ -16,10 +16,10 @@ */ package org.apache.activemq.security; +import org.apache.directory.api.ldap.model.name.Dn; +import org.apache.directory.api.ldap.model.exception.LdapException; import org.apache.directory.ldap.client.api.LdapConnection; import org.apache.directory.ldap.client.api.LdapNetworkConnection; -import org.apache.directory.shared.ldap.model.exception.LdapException; -import org.apache.directory.shared.ldap.model.name.Dn; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleTest.java index 5098b2571f..e2a280b0f9 100644 --- a/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleTest.java +++ b/activemq-unit-tests/src/test/java/org/apache/activemq/security/CachedLDAPAuthorizationModuleTest.java @@ -16,13 +16,13 @@ */ package org.apache.activemq.security; +import org.apache.directory.api.ldap.model.name.Dn; import org.apache.directory.ldap.client.api.LdapConnection; import org.apache.directory.ldap.client.api.LdapNetworkConnection; import org.apache.directory.server.annotations.CreateLdapServer; import org.apache.directory.server.annotations.CreateTransport; import org.apache.directory.server.core.annotations.ApplyLdifFiles; import org.apache.directory.server.core.integ.FrameworkRunner; -import org.apache.directory.shared.ldap.model.name.Dn; import org.junit.runner.RunWith; import java.io.InputStream; diff --git a/pom.xml b/pom.xml index e50404bc0a..52d886ab28 100644 --- a/pom.xml +++ b/pom.xml @@ -60,8 +60,8 @@ 2.4.2 1.0 3.6 - 2.0.0-M6 - 1.0.6 + 2.0.0.AM25 + 1.1.1 1.0 28.0-jre 1.0.4