fluentd-jdk-handler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>codes.vps</groupId>
<artifactId>fluentd-jdk-handler</artifactId>
<version>0.7</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>codes.vps</groupId>
<artifactId>fluentd-jdk-handler</artifactId>
<version>0.7</version>
<name>Fluentd JDK logging handler</name>
<description>JDK logging handler implementation that sends logs to forward input of fluentd</description>
<url>https://fluentd-jdk-handler.vps.codes/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Pawel S. Veselov</name>
<email>pawel.veselov@gmail.com</email>
<organization>Self</organization>
<organizationUrl>https://github.com/veselov</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/veselov/fluentd-jdk-handler</url>
<connection>scm:git:https://github.com/veselov/fluentd-jdk-handler.git</connection>
<developerConnection>scm:git:git@github.com:veselov/fluentd-jdk-handler.git</developerConnection>
<tag>v0.7</tag>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<!--
You must have a "fluentd-jdk-handler.sign" profile defined in
~/.m2/settings.xml for this to work. The profile must point to
the correct signing key
-->
<releaseProfiles>fluentd-jdk-handler.sign</releaseProfiles>
<useReleaseProfile>true</useReleaseProfile>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<publishingServerId>maven.central</publishingServerId>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<detectJavaApiLink />
<detectLinks />
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive />
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>owasp-check</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${versions.owasp}</version>
<inherited>false</inherited>
<executions>
<execution>
<id>v-check</id>
<configuration>
<suppressionFiles>
<supressionFile>dcm.suppression.xml</supressionFile>
</suppressionFiles>
<failBuildOnCVSS>0</failBuildOnCVSS>
</configuration>
<phase>verify</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>owasp-check-excelfore</id>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${versions.owasp}</version>
<configuration>
<nvdDatafeedUrl>https://dev-esync.excelfore.com/nvd/nvdcve-{0}.json.gz</nvdDatafeedUrl>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
<ossindexAnalyzerUrl>https://dev-esync.excelfore.com/oss/</ossindexAnalyzerUrl>
<ossIndexServerId>oss-index</ossIndexServerId>
</configuration>
<executions>
<execution>
<id>v-check</id>
<configuration>
<suppressionFiles>
<supressionFile>dcm.suppression.xml</supressionFile>
</suppressionFiles>
<failBuildOnCVSS>0</failBuildOnCVSS>
</configuration>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<versions.fluency>2.7.4</versions.fluency>
<versions.jetbrains-annotations>24.0.1</versions.jetbrains-annotations>
<versions.junit-jupiter-engine>5.9.2</versions.junit-jupiter-engine>
<versions.owasp>12.1.9</versions.owasp>
</properties>
<dependencies>
<dependency>
<groupId>org.komamitsu</groupId>
<artifactId>fluency-core</artifactId>
<version>${versions.fluency}</version>
</dependency>
<dependency>
<groupId>org.komamitsu</groupId>
<artifactId>fluency-fluentd</artifactId>
<version>${versions.fluency}</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>${versions.jetbrains-annotations}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${versions.junit-jupiter-engine}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>