组织ID: |
org.ldaptive |
项目ID: |
ldaptive-unboundid |
版本: |
1.0.6 |
最后修改时间: |
2018-08-03 14:48:04 |
包类型: |
jar |
标题: |
LDAPTIVE UNBOUNDID PROVIDER |
描述: |
ldaptive unboundid provider |
相关URL: |
http://www.ldaptive.org |
大小: |
38.80KB |
|
Maven引入代码: |
<dependency>
<groupId>org.ldaptive</groupId>
<artifactId>ldaptive-unboundid</artifactId>
<version>1.0.6</version>
</dependency>
|
Gradle引入代码: |
org.ldaptive:ldaptive-unboundid:1.0.6
|
下载Jar包: |
|
POM文件内容: |
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.ldaptive</groupId>
<artifactId>ldaptive-unboundid</artifactId>
<packaging>jar</packaging>
<version>1.0.6</version>
<name>LDAPTIVE UNBOUNDID PROVIDER</name>
<description>ldaptive unboundid provider</description>
<url>http://www.ldaptive.org</url>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/vt-middleware/issues/list</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>ldaptive</name>
<subscribe>ldaptive+subscribe@googlegroups.com</subscribe>
<unsubscribe>ldaptive+unsubscribe@googlegroups.com</unsubscribe>
<post>ldaptive@googlegroups.com</post>
<archive>http://groups.google.com/group/ldaptive</archive>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:svn:https://vt-middleware.googlecode.com/svn/ldaptive/unboundid-provider</connection>
<url>http://vt-middleware.googlecode.com/svn/ldaptive/unboundid-provider</url>
</scm>
<developers>
<developer>
<id>dfisher</id>
<name>Daniel Fisher</name>
<email>dfisher@vt.edu</email>
<organization>Virginia Tech</organization>
<organizationUrl>http://www.vt.edu</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>marvin.addison</id>
<name>Marvin Addison</name>
<email>serac@vt.edu</email>
<organization>Virginia Tech</organization>
<organizationUrl>http://www.vt.edu</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<checkstyle.dir>${basedir}/src/main/checkstyle</checkstyle.dir>
<assembly.dir>${basedir}/src/main/assembly</assembly.dir>
</properties>
<dependencies>
<dependency>
<groupId>org.ldaptive</groupId>
<artifactId>ldaptive</artifactId>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>com.unboundid</groupId>
<artifactId>unboundid-ldapsdk</artifactId>
<version>2.3.8</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>copy-info</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/package-info</outputDirectory>
<resources>
<resource>
<directory>${basedir}</directory>
<filtering>true</filtering>
<includes>
<include>README*</include>
</includes>
</resource>
<resource>
<directory>${basedir}</directory>
<filtering>false</filtering>
<includes>
<include>LICENSE*</include>
<include>pom.xml</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<fork>true</fork>
<debug>true</debug>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.13</version>
<configuration>
<configLocation>${checkstyle.dir}/checkstyle_checks.xml</configLocation>
<headerLocation>${checkstyle.dir}/checkstyle_header</headerLocation>
<suppressionsLocation>${checkstyle.dir}/suppressions.xml</suppressionsLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<failsOnError>false</failsOnError>
<outputFileFormat>plain</outputFileFormat>
</configuration>
<executions>
<execution>
<id>checkstyle</id>
<phase>compile</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<links>
<link>http://download.oracle.com/javase/6/docs/api</link>
</links>
<bottom><![CDATA[<i>Copyright © 2003-2014 Virginia Tech. All Rights Reserved.</i>]]></bottom>
</configuration>
<executions>
<execution>
<id>javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>source</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>jar</id>
<phase>package</phase>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<attach>false</attach>
<descriptors>
<descriptor>${assembly.dir}/ldaptive.xml</descriptor>
</descriptors>
<archiverConfig>
<defaultDirectoryMode>0755</defaultDirectoryMode>
</archiverConfig>
</configuration>
<executions>
<execution>
<id>assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sign-artifacts</id>
<activation>
<property>
<name>sign</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>package</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.ldaptive.provider.unboundid.UnboundIDConnection$1.class
org.ldaptive.provider.unboundid.UnboundIDConnection$AbstractUnboundIDSearch.class
org.ldaptive.provider.unboundid.UnboundIDConnection$AggregateDisconnectHandler.class
org.ldaptive.provider.unboundid.UnboundIDConnection$AggregateUnsolicitedNotificationHandler.class
org.ldaptive.provider.unboundid.UnboundIDConnection$UnboundIDAsyncRequest.class
org.ldaptive.provider.unboundid.UnboundIDConnection$UnboundIDAsyncSearchListener$1.class
org.ldaptive.provider.unboundid.UnboundIDConnection$UnboundIDAsyncSearchListener.class
org.ldaptive.provider.unboundid.UnboundIDConnection$UnboundIDSearchIterator$SearchResultIterator.class
org.ldaptive.provider.unboundid.UnboundIDConnection$UnboundIDSearchIterator.class
org.ldaptive.provider.unboundid.UnboundIDConnection.class
org.ldaptive.provider.unboundid.UnboundIDConnectionFactory.class
org.ldaptive.provider.unboundid.UnboundIDControlHandler.class
org.ldaptive.provider.unboundid.UnboundIDProvider.class
org.ldaptive.provider.unboundid.UnboundIDProviderConfig.class
org.ldaptive.provider.unboundid.UnboundIDSaslUtils$1.class
org.ldaptive.provider.unboundid.UnboundIDSaslUtils.class
org.ldaptive.provider.unboundid.UnboundIDStartTLSConnectionFactory.class
org.ldaptive.provider.unboundid.UnboundIDSyncProvider.class
org.ldaptive.provider.unboundid.UnboundIDUtils.class
META-INF/maven/org.ldaptive/ldaptive-unboundid/pom.xml
META-INF/maven/org.ldaptive/ldaptive-unboundid/pom.properties
|
依赖Jar: |
ldaptive-1.0.6.jar
/org.ldaptive/ldaptive/1.0.6
查看ldaptive所有版本文件
unboundid-ldapsdk-2.3.8.jar
/com.unboundid/unboundid-ldapsdk/2.3.8
查看unboundid-ldapsdk所有版本文件
|