组织ID: |
org.ldaptive |
项目ID: |
ldaptive-beans |
版本: |
1.0.10 |
最后修改时间: |
2019-11-02 00:57:28 |
包类型: |
jar |
标题: |
LDAPTIVE BEANS |
描述: |
Provides a mapping, persistence, and code generation API for reading and writing POJOs to an LDAP directory |
相关URL: |
http://www.ldaptive.org |
大小: |
61.37KB |
|
Maven引入代码: |
<dependency>
<groupId>org.ldaptive</groupId>
<artifactId>ldaptive-beans</artifactId>
<version>1.0.10</version>
</dependency>
|
Gradle引入代码: |
org.ldaptive:ldaptive-beans:1.0.10
|
下载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-beans</artifactId>
<packaging>jar</packaging>
<version>1.0.10</version>
<name>LDAPTIVE BEANS</name>
<description>Provides a mapping, persistence, and code generation API for reading and writing POJOs to an LDAP directory</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/beans</connection>
<url>http://vt-middleware.googlecode.com/svn/ldaptive/beans</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.10</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>4.1.7.RELEASE</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.sun.codemodel</groupId>
<artifactId>codemodel</artifactId>
<version>2.6</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.21</version>
<scope>test</scope>
</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.3</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.14</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.3</version>
<configuration>
<bottom><![CDATA[<i>Copyright © 2003-2016 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.6</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.4</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.beans.AbstractClassDescriptor$SimpleAttributeValueMutator.class
org.ldaptive.beans.AbstractClassDescriptor$SimpleDnValueMutator.class
org.ldaptive.beans.AbstractClassDescriptor.class
org.ldaptive.beans.AbstractLdapEntryMapper.class
org.ldaptive.beans.Attribute.class
org.ldaptive.beans.AttributeValueMutator.class
org.ldaptive.beans.ClassDescriptor.class
org.ldaptive.beans.DnValueMutator.class
org.ldaptive.beans.Entry.class
org.ldaptive.beans.generate.BeanGenerator.class
org.ldaptive.beans.generate.props.BeanGeneratorPropertyInvoker.class
org.ldaptive.beans.generate.props.BeanGeneratorPropertySource.class
org.ldaptive.beans.LdapEntryMapper.class
org.ldaptive.beans.persistence.DefaultLdapEntryManager.class
org.ldaptive.beans.persistence.LdapEntryManager.class
org.ldaptive.beans.reflect.AbstractAttributeValueMutator.class
org.ldaptive.beans.reflect.AbstractCollectionReflectionTranscoder.class
org.ldaptive.beans.reflect.ArrayReflectionTranscoder.class
org.ldaptive.beans.reflect.DefaultClassDescriptor.class
org.ldaptive.beans.reflect.DefaultDnValueMutator.class
org.ldaptive.beans.reflect.DefaultLdapEntryMapper.class
org.ldaptive.beans.reflect.DefaultReflectionTranscoder.class
org.ldaptive.beans.reflect.FieldAttributeValueMutator.class
org.ldaptive.beans.reflect.FieldClassDescriptor.class
org.ldaptive.beans.reflect.ListReflectionTranscoder.class
org.ldaptive.beans.reflect.MethodAttributeValueMutator.class
org.ldaptive.beans.reflect.MethodClassDescriptor.class
org.ldaptive.beans.reflect.ReflectionTranscoder.class
org.ldaptive.beans.reflect.ReflectionUtils.class
org.ldaptive.beans.reflect.SetReflectionTranscoder.class
org.ldaptive.beans.reflect.SingleValueReflectionTranscoder.class
org.ldaptive.beans.reflect.TranscoderFactory.class
org.ldaptive.beans.spring.SpelAttributeValueMutator.class
org.ldaptive.beans.spring.SpelDnValueMutator.class
org.ldaptive.beans.spring.SpringClassDescriptor.class
org.ldaptive.beans.spring.SpringLdapEntryMapper$1.class
org.ldaptive.beans.spring.SpringLdapEntryMapper$2.class
org.ldaptive.beans.spring.SpringLdapEntryMapper.class
META-INF/maven/org.ldaptive/ldaptive-beans/pom.xml
META-INF/maven/org.ldaptive/ldaptive-beans/pom.properties
|
依赖Jar: |
ldaptive-1.0.10.jar
/org.ldaptive/ldaptive/1.0.10
查看ldaptive所有版本文件
spring-expression-4.1.7.RELEASE.jar
/org.springframework/spring-expression/4.1.7.RELEASE
查看spring-expression所有版本文件
codemodel-2.6.jar
/com.sun.codemodel/codemodel/2.6
查看codemodel所有版本文件
testng-6.8.21.jar
/org.testng/testng/6.8.21
查看testng所有版本文件
|