组织ID: |
org.apache.directory.server |
项目ID: |
apacheds-server-unit |
版本: |
1.0.2 |
最后修改时间: |
2018-08-08 19:48:22 |
包类型: |
jar |
标题: |
ApacheDS Server Unit |
描述: |
Unit testing framework for ApacheDS Server JNDI Provider
|
大小: |
13.98KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-server-unit</artifactId>
<version>1.0.2</version>
</dependency>
|
Gradle引入代码: |
org.apache.directory.server:apacheds-server-unit:1.0.2
|
下载Jar包: |
|
POM文件内容: |
<?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>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.apache.directory.server.unit.AbstractServerTest.class
META-INF/NOTICE.txt
META-INF/LICENSE.txt
META-INF/maven/org.apache.directory.server/apacheds-server-unit/pom.xml
META-INF/maven/org.apache.directory.server/apacheds-server-unit/pom.properties
|
依赖Jar: |
ldapsdk-4.1.jar
/ldapsdk/ldapsdk/4.1
查看ldapsdk所有版本文件
apacheds-server-jndi-${pom.version}.jar
/org.apache.directory.server/apacheds-server-jndi/${pom.version}
查看apacheds-server-jndi所有版本文件
apacheds-core-unit-${pom.version}.jar
/org.apache.directory.server/apacheds-core-unit/${pom.version}
查看apacheds-core-unit所有版本文件
|