log-statements-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.bronto</groupId>
<artifactId>log-statements-maven-plugin</artifactId>
<version>0.0.2</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.bronto</groupId>
<artifactId>log-statements-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>0.0.2</version>
<name>Log Statements Maven Plugin</name>
<description>A Plugin to Manage Statement IDs in Log Statements</description>
<url>https://github.com/brontoio/bronto-log-statements-maven-plugin</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Benoit Gaudin</name>
<email>benoit@bronto.io</email>
<organization>Bronto.io</organization>
<organizationUrl>https://bronto.io</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/brontoio/bronto-log-statements-maven-plugin.git</connection>
<developerConnection>scm:git:ssh://github.com:brontoio/bronto-log-statements-maven-plugin.git</developerConnection>
<url>https://github.com/brontoio/bronto-log-statements-maven-plugin/tree/main</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- external -->
<maven.plugin.api.version>3.9.11</maven.plugin.api.version>
<maven.plugin.tools.version>3.15.2</maven.plugin.tools.version>
<maven.project.version>2.2.1</maven.project.version>
<jackson.core.version>2.20.1</jackson.core.version>
<!-- internal -->
<bronto.log.statement.tools.version>0.0.1</bronto.log.statement.tools.version>
<!-- test -->
<junit.version>6.0.1</junit.version>
</properties>
<dependencies>
<dependency>
<!-- required in all cases -->
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-api</artifactId>
<version>2.0.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- optional helpers, might be superfluous depending on your use case -->
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-util</artifactId>
<version>2.0.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- Used in order to inject resource for dependency resolving -->
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.plugin.api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven.plugin.tools.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.core.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>${maven.project.version}</version>
</dependency>
<dependency>
<groupId>io.bronto</groupId>
<artifactId>log-statements-tools</artifactId>
<version>${bronto.log.statement.tools.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- https://central.sonatype.org/publish/publish-portal-maven/#checksums-->
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://central.sonatype.com/repository/maven/</url>
</repository>
</distributionManagement>
</project>