quarkus-logging-splunk-docs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.logging.splunk</groupId> <artifactId>quarkus-logging-splunk-docs</artifactId> <version>3.3.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkiverse.logging.splunk</groupId> <artifactId>quarkus-logging-splunk-parent</artifactId> <version>3.3.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>quarkus-logging-splunk-docs</artifactId> <name>Splunk logging extension - Documentation</name> <properties> <skip.config.copy>false</skip.config.copy> </properties> <dependencies> <!-- Make sure the doc is built after the other artifacts --> <dependency> <groupId>io.quarkiverse.logging.splunk</groupId> <artifactId>quarkus-logging-splunk-deployment</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>it.ozimov</groupId> <artifactId>yaml-properties-maven-plugin</artifactId> <executions> <execution> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>${project.basedir}/../.github/project.yml</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>generate-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.basedir}/modules/ROOT/pages/includes/</outputDirectory> <resources> <resource> <directory>${project.basedir}/../target/asciidoc/generated/config/</directory> <!-- This will probably need adjustments if one day Quarkus config is used --> <include>quarkus-log-handler-splunk.adoc</include> <filtering>false</filtering> </resource> <resource> <directory>${project.basedir}/templates/includes</directory> <include>attributes.adoc</include> <filtering>true</filtering> </resource> </resources> <skip>${skip.config.copy}</skip> </configuration> </execution> <execution> <id>copy-images</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/generated-docs/_images/</outputDirectory> <resources> <resource> <directory>${project.basedir}/modules/ROOT/assets/images/</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <configuration> <requires> <require>asciidoctor-diagram</require> </requires> </configuration> <dependencies> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj-diagram</artifactId> <version>2.3.1</version> </dependency> </dependencies> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <properties> <!-- Don't activate during releasing, as unstaged changes will block the rebase --> <skip.config.copy>true</skip.config.copy> </properties> </profile> </profiles> </project>