javadocio-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.safris.maven</groupId> <artifactId>javadocio-maven-plugin</artifactId> <version>0.1.2</version> </dependency>
<!-- Copyright (c) 2019 Seva Safris Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. You should have received a copy of The MIT License (MIT) along with this program. If not, see <http://opensource.org/licenses/MIT/>. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.safris.maven</groupId> <artifactId>javadocio-maven-plugin</artifactId> <version>0.1.2</version> <packaging>maven-plugin</packaging> <url>https://github.com/safris/javadocio-maven-plugin</url> <name>Javadoc.io Maven Plugin</name> <description> The Javadoc.io Maven Plugin creates JavaDocs that interlink to javadoc.io. </description> <organization> <name>Seva Safris</name> <url>https://www.safris.org/</url> </organization> <scm> <url>https://github.com/safris/javadocio-maven-plugin</url> <connection>scm:git:https://github.com/safris/javadocio-maven-plugin.git</connection> <developerConnection>scm:git:https://github.com/safris/javadocio-maven-plugin.git</developerConnection> <tag>HEAD</tag> </scm> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://opensource.org/licenses/MIT/</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>safris</id> <name>Seva Safris</name> <email>seva@safris.org</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <configuration> <goalPrefix>javadocio</goalPrefix> </configuration> <executions> <execution> <id>default-descriptor</id> <goals> <goal>descriptor</goal> </goals> <phase>process-classes</phase> </execution> <execution> <id>help-descriptor</id> <goals> <goal>helpmojo</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> </plugins> </build> <!--profiles> <profile> <id>maven-plugin-test</id> <build> <plugins> </plugins> </build> </profile> </profiles--> <dependencies> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> </dependency> <dependency> <artifactId>junit</artifactId> <groupId>junit</groupId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <excludes> <exclude>**/*.class</exclude> <exclude>**/*.jar</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <!-- Necessary for GPG v2.2+ --> <!--configuration> <gpgArguments> <arg>- -pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration--> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>sonatype-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>report</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.2</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>install</phase> <goals> <goal>report</goal> </goals> <configuration> <skip>${maven.test.skip}</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> <executions> <execution> <phase>install</phase> <goals> <goal>report</goal> </goals> <configuration> <timestampFormat>EpochMillis</timestampFormat> <skip>${maven.test.skip}</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>sonatype-snapshot</id> <name>Sonatype Snapshot Repository</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-staging</id> <name>Sonatype Staging Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> </project>