tnt4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.jkoolcloud</groupId>
<artifactId>tnt4j</artifactId>
<version>3.2.0</version>
</dependency><!--
~ Copyright 2014-2023 JKOOL, LLC.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>com.jkoolcloud</groupId>
<artifactId>tnt4j</artifactId>
<version>3.2.0</version>
<packaging>pom</packaging>
<name>tnt4j</name>
<url>https://github.com/Nastel/TNT4J</url>
<description>Streaming, Tracking and Logging API</description>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>${project.organization.name}</name>
<url>${project.organization.url}</url>
</organization>
<developers>
<developer>
<name>jKool Team</name>
<email>support@jkoolcloud.com</email>
<organization>jKool</organization>
<organizationUrl>${project.organization.url}</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Nastel/TNT4J</connection>
<developerConnection>scm:git:git//github.com/Nastel/TNT4J</developerConnection>
<url>https://github.com/Nastel/TNT4J</url>
</scm>
<distributionManagement>
<repository>
<id>oss.sonatype.org</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>oss.sonatype.org</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.resources.encoding>UTF-8</project.resources.encoding>
<project.organization.name>jKool, LLC</project.organization.name>
<project.organization.url>https://www.meshiq.com/</project.organization.url>
<product.vendor>${project.organization.name}</product.vendor>
<product.name>${project.name}</product.name>
<product.name.hr>TNT4J</product.name.hr>
<product.copyright.html>
<![CDATA[<font size="-1">Copyright © 2014-2023 ${project.organization.name}. All Rights Reserved.</font>]]></product.copyright.html>
<project.java.version>11</project.java.version>
<maven.compiler.release>${project.java.version}</maven.compiler.release>
<maven.compiler.debuglevel>source,lines,vars</maven.compiler.debuglevel>
<maven.compiler.verbose>false</maven.compiler.verbose>
<maven.compiler.fork>false</maven.compiler.fork>
<jpms.module.name>com.jkoolcloud.tnt4j</jpms.module.name>
<maven.source.skip>true</maven.source.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
<assembly.skipAssembly>true</assembly.skipAssembly>
<gpg.skip>true</gpg.skip>
</properties>
<profiles>
<profile>
<id>pack-bin</id>
<properties>
<assembly.skipAssembly>false</assembly.skipAssembly>
</properties>
</profile>
<profile>
<id>pack-all</id>
<properties>
<maven.source.skip>false</maven.source.skip>
<maven.javadoc.skip>false</maven.javadoc.skip>
<assembly.skipAssembly>false</assembly.skipAssembly>
</properties>
</profile>
<profile>
<id>pack-maven</id>
<properties>
<maven.source.skip>false</maven.source.skip>
<maven.javadoc.skip>false</maven.javadoc.skip>
</properties>
</profile>
<profile>
<id>maven-release</id>
<properties>
<maven.source.skip>false</maven.source.skip>
<maven.javadoc.skip>false</maven.javadoc.skip>
<gpg.skip>false</gpg.skip>
</properties>
</profile>
</profiles>
<build>
<defaultGoal>clean install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.1</version>
<configuration>
<archive>
<!--<index>true</index>-->
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Implementation-Vendor>${product.vendor}</Implementation-Vendor>
<Implementation-Title>${product.name}</Implementation-Title>
<Implementation-Version>${project.version}-${maven.build.timestamp}</Implementation-Version>
<Automatic-Module-Name>${jpms.module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.9</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>com.jkoolcloud.tnt4j.*</Export-Package>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<verbose>${maven.compiler.verbose}</verbose>
<release>${maven.compiler.release}</release>
<debuglevel>${maven.compiler.debuglevel}</debuglevel>
<fork>${maven.compiler.fork}</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<encoding>${project.resources.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<doctitle>${product.name.hr}</doctitle>
<windowtitle>${product.name.hr}</windowtitle>
<header>Version ${project.version}</header>
<bottom>${product.copyright.html}</bottom>
<show>protected</show>
<use>true</use>
<notree>false</notree>
<nonavbar>false</nonavbar>
<noindex>false</noindex>
<splitindex>true</splitindex>
<author>true</author>
<version>true</version>
<nodeprecatedlist>false</nodeprecatedlist>
<nodeprecated>false</nodeprecated>
<failOnError>true</failOnError>
<doclint>all</doclint>
<release>${maven.compiler.release}</release>
</configuration>
<executions>
<execution>
<id>build-javadocs-module</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
<keyname>${gpg.keyname}</keyname>
<passphraseEnvName>MAVEN_GPG_PASSPHRASE</passphraseEnvName>
<bestPractices>false</bestPractices>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>oss.sonatype.org</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<executions>
<execution>
<id>deploy-to-sonatype</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.16.2</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-release-plugin</artifactId>-->
<!--<version>3.0.0-M7</version>-->
<!--<configuration>-->
<!--<autoVersionSubmodules>true</autoVersionSubmodules>-->
<!--<useReleaseProfile>false</useReleaseProfile>-->
<!--<releaseProfiles>release</releaseProfiles>-->
<!--<goals>deploy</goals>-->
<!--</configuration>-->
<!--</plugin>-->
</plugins>
</build>
<modules>
<module>tnt4j-core</module>
<module>tnt4j-kafka-sink</module>
<module>tnt4j-mqtt-sink</module>
<module>tnt4j--distribution</module>
</modules>
</project>