Maven Repository - POM file for Directory Server apacheds-server-unit 1.0.2 1.0.2

Summary

ApacheDS Server Unit.

Unit testing framework for ApacheDS Server JNDI Provider.

Declaration

Here is the list of declaration for apacheds-server-unit. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.directory.server</groupId>
   <artifactId>apacheds-server-unit</artifactId>
   <version>1.0.2</version>
</dependency>

If you think this Maven repository POM file listing for apacheds-server-unit is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Plugin

The following plugins are used in the apacheds-server-unit-1.0.2.jar

  1. maven-surefire-plugin




Packages

The following packages are defined in the apacheds-server-unit-1.0.2.jar

org.apache.directory.server.unit

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="ISO-8859-1"?>
<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.apache.directory.server</groupId>
    <artifactId>build</artifactId>
    <version>1.0.2</version>
  </parent>
  <artifactId>apacheds-server-unit</artifactId>
  <name>ApacheDS Server Unit</name>
  <packaging>jar</packaging>  
  <description>
    Unit testing framework for ApacheDS Server JNDI Provider
  </description>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>provided</scope>
    </dependency>  
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>nlog4j</artifactId>
      <scope>provided</scope>
    </dependency>  
    <dependency>
      <groupId>ldapsdk</groupId>
      <artifactId>ldapsdk</artifactId>
      <version>4.1</version>
    </dependency>  
    <dependency>
      <groupId>org.apache.directory.server</groupId>
      <artifactId>apacheds-server-jndi</artifactId>
      <version>${pom.version}</version>
    </dependency>  
    <dependency>
      <groupId>org.apache.directory.server</groupId>
      <artifactId>apacheds-core-unit</artifactId>
      <version>${pom.version}</version>
    </dependency>  
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.2</version>
        <configuration>
          <excludes>
            <exclude>**/Abstract*</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>no-integration-tests</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <build>
        <plugins>
            <plugin>
              <artifactId>maven-surefire-plugin</artifactId>
              <version>2.2</version>
              <configuration>
                <excludes>
                  <!-- TODO
                     Need to rename all integration tests to have Integration
                     in the name of the test so we can change the exclude below
                     to only refer to these tests rather than all tests like so:
                
                     <exclude>**/*Integration*Test*</exclude>
                   -->
                  <exclude>**/*Test.java</exclude>
                </excludes>
              </configuration>
            </plugin>
            <plugin>
              <artifactId>maven-antrun-plugin</artifactId>
              <version>1.1</version>
              <executions>
                <execution>
                  <phase>validate</phase>
                  <configuration>
                    <tasks>
                      <echo>
=================================================================
                          W A R N I N G
                          -------------
                  
Integration tests have been disabled.  To enable integration 
tests run maven with the -Dintegration switch.
=================================================================
                      </echo>
                    </tasks>
                  </configuration>
                  <goals>
                    <goal>run</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
         </plugins>
       </build>
    </profile>
    <profile>
      <id>integration</id>
      <activation>
        <property><name>integration</name></property>
      </activation>
    </profile>
  </profiles>
</project>