gradle-plugin-doc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jkube</groupId> <artifactId>gradle-plugin-doc</artifactId> <version>1.18.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2019 Red Hat, Inc. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at: https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: Red Hat, Inc. - initial API and implementation --> <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> <parent> <groupId>org.eclipse.jkube</groupId> <artifactId>gradle-plugin</artifactId> <version>1.18.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>gradle-plugin-doc</artifactId> <name>Gradle Plugin :: Documentation</name> <properties> <plugin>kubernetes-gradle-plugin</plugin> <task-prefix>k8s</task-prefix> <cluster>Kubernetes</cluster> <pluginExtension>kubernetes</pluginExtension> </properties> <build> <plugins> <!-- Disable dependencyConvergence --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>dependency-convergence</id> <goals> <goal>enforce</goal> </goals> <configuration combine.self="override"> <rules></rules> <skip>true</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-asciidoc</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}/META-INF/doc/fmp</outputDirectory> <resources> <resource> <directory>src/main/asciidoc</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <configuration> <attributes> <plugin>${plugin}</plugin> <task-prefix>${task-prefix}</task-prefix> <cluster>${cluster}</cluster> <pluginExtension>${pluginExtension}</pluginExtension> </attributes> </configuration> </plugin> </plugins> </pluginManagement> </build> <!-- ==== HTML documentation ====================== --> <profiles> <profile> <id>html</id> <build> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <executions> <execution> <id>output-html</id> <phase>package</phase> <goals> <goal>process-asciidoc</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <activation><activeByDefault>true</activeByDefault></activation> </profile> <profile> <id>doc-watch</id> <build> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <executions> <execution> <id>output-html</id> <phase>package</phase> <goals> <goal>auto-refresh</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>