ldaptive-netscape
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ldaptive</groupId> <artifactId>ldaptive-netscape</artifactId> <version>1.0.13</version> </dependency>
<?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-netscape</artifactId> <packaging>jar</packaging> <version>1.0.13</version> <name>LDAPTIVE NETSCAPE PROVIDER</name> <description>ldaptive netscape 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/netscape-provider</connection> <url>http://vt-middleware.googlecode.com/svn/ldaptive/netscape-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.13</version> </dependency> <dependency> <groupId>ldapsdk</groupId> <artifactId>ldapsdk</artifactId> <version>4.1</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.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.4</version> <configuration> <links> <link>http://download.oracle.com/javase/6/docs/api</link> </links> <bottom><![CDATA[<i>Copyright © 2003-2017 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>