Placed both integration test modules in test. The OpenLDAP version is run only if using the profile "openldap".
This commit is contained in:
@@ -114,7 +114,7 @@
|
||||
<module>core-tiger</module>
|
||||
<module>acegi-support</module>
|
||||
<module>test-support</module>
|
||||
<module>integration-tests</module>
|
||||
<module>test</module>
|
||||
</modules>
|
||||
<profiles>
|
||||
<profile>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>spring-ldap-openldap-integration-tests</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring LDAP Integration Tests</name>
|
||||
<name>Spring LDAP Integration Tests (OpenLDAP)</name>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
@@ -11,7 +11,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>spring-ldap-integration-tests</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring LDAP Integration Tests</name>
|
||||
<name>Spring LDAP Integration Tests (Generic)</name>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
56
mvn-build/test/pom.xml
Normal file
56
mvn-build/test/pom.xml
Normal file
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.ldap</groupId>
|
||||
<artifactId>spring-ldap-parent</artifactId>
|
||||
<version>1.3-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>spring-ldap-integration-tests-parent</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Spring LDAP Integration Tests</name>
|
||||
<modules>
|
||||
<module>integration-tests</module>
|
||||
</modules>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>openldap</id>
|
||||
<modules>
|
||||
<module>integration-tests-openldap</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-milestone</id>
|
||||
<name>Spring Milestone Repository</name>
|
||||
<url>http://maven.springframework.org/milestone</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.mortbay.jetty</groupId>
|
||||
<artifactId>maven-jetty-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<configuration>
|
||||
<warName>${pom.artifactId}</warName>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<!-- Logging dependencies -->
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
Reference in New Issue
Block a user