server-sdk-docs-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.unboundid</groupId> <artifactId>server-sdk-docs-maven-plugin</artifactId> <version>1.0.16</version> </dependency>
<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"> <parent> <artifactId>server-sdk-maven-parent</artifactId> <groupId>com.unboundid</groupId> <version>1.0.16</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>server-sdk-docs-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>UnboundID Server SDK Extension Docs Plugin</name> <dependencies> <dependency> <groupId>com.unboundid</groupId> <artifactId>server-sdk</artifactId> <version>${server-sdk.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.unboundid</groupId> <artifactId>unboundid-ldapsdk</artifactId> <version>3.1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <id>default-descriptor</id> <phase>process-classes</phase> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <outputDirectory>${project.build.directory}/javadoc</outputDirectory> <stylesheetfile>javadoc/ping-javadoc-stylesheet.css</stylesheetfile> <linksource>true</linksource> <quiet>true</quiet> </configuration> <executions> <execution> <id>create-javadoc-archive</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <quiet>true</quiet> <linksource>true</linksource> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>