mirror of https://github.com/apache/activemq.git
140 lines
3.9 KiB
XML
140 lines
3.9 KiB
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-project</artifactId>
|
|
<version>4.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>activemq-jaas</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>ActiveMQ :: JAAS</name>
|
|
<description>A collection of generic JAAS Login Modules</description>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<!-- Configure which tests are included/excuded -->
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.1.1</version>
|
|
<configuration>
|
|
<forkMode>pertest</forkMode>
|
|
<excludes>
|
|
<exclude implementation="java.lang.String">**/LDAPLoginModuleTest.*</exclude>
|
|
</excludes>
|
|
<includes>
|
|
<include implementation="java.lang.String">**/*Test.*</include>
|
|
</includes>
|
|
<systemProperties>
|
|
<property>
|
|
<name>java.security.auth.login.config</name>
|
|
<value>${basedir}/src/test/resources/login.config</value>
|
|
</property>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>activeio</groupId>
|
|
<artifactId>activeio</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>backport-util-concurrent</groupId>
|
|
<artifactId>backport-util-concurrent</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.derby</groupId>
|
|
<artifactId>derby</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>axion</groupId>
|
|
<artifactId>axion</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>directory</groupId>
|
|
<artifactId>apacheds-core</artifactId>
|
|
<version>0.9.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>directory</groupId>
|
|
<artifactId>apacheds-shared</artifactId>
|
|
<version>0.9.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>directory-shared</groupId>
|
|
<artifactId>apache-ldapber-provider</artifactId>
|
|
<version>0.9.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>directory-shared</groupId>
|
|
<artifactId>ldap-common</artifactId>
|
|
<version>0.9.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>directory-asn1</groupId>
|
|
<artifactId>asn1-codec</artifactId>
|
|
<version>0.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>directory-asn1</groupId>
|
|
<artifactId>asn1-ber</artifactId>
|
|
<version>0.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>directory-asn1</groupId>
|
|
<artifactId>asn1-der</artifactId>
|
|
<version>0.3.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>directory-shared</groupId>
|
|
<artifactId>kerberos-common</artifactId>
|
|
<version>0.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>directory-network</groupId>
|
|
<artifactId>mina</artifactId>
|
|
<version>0.7.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>directory-protocols</groupId>
|
|
<artifactId>kerberos-protocol</artifactId>
|
|
<version>0.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>directory-protocols</groupId>
|
|
<artifactId>ldap-protocol</artifactId>
|
|
<version>0.9.2</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</model>
|