2021-02-24 01:14:55 +03:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
Licensed under the MIT License. See LICENSE in the project root for
|
|
|
|
license information.
|
|
|
|
-->
|
2021-03-04 23:59:08 +03:00
|
|
|
<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">
|
2021-01-29 22:40:32 +03:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-02-24 01:14:55 +03:00
|
|
|
<groupId>com.microsoft.jfr</groupId>
|
2022-07-11 18:21:29 +03:00
|
|
|
<artifactId>microsoft-jfr</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2021-05-13 15:41:57 +03:00
|
|
|
<version>1.2.1-SNAPSHOT</version>
|
2021-02-24 22:26:33 +03:00
|
|
|
|
|
|
|
<name>Java Flight Recorder Streaming Library</name>
|
|
|
|
<description>A library for streaming JFR files via the FlightRecorderMXBean</description>
|
2021-03-16 17:51:13 +03:00
|
|
|
<url>https://github.com/Microsoft/jfr-streaming</url>
|
|
|
|
<organization>
|
|
|
|
<name>Microsoft Corporation</name>
|
|
|
|
<url>http://microsoft.com</url>
|
|
|
|
</organization>
|
2021-01-29 22:40:32 +03:00
|
|
|
|
2021-02-24 01:14:55 +03:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>http://opensource.org/licenses/MIT</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:Microsoft/jfr-streaming.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:Microsoft/jfr-streaming.git</developerConnection>
|
2021-03-16 17:51:13 +03:00
|
|
|
<url>https://github.com/Microsoft/jfr-streaming</url>
|
2021-05-13 15:41:57 +03:00
|
|
|
<tag>HEAD</tag>
|
2021-02-24 01:14:55 +03:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>microsoft</id>
|
2021-03-16 17:51:13 +03:00
|
|
|
<name>Microsoft Corporation</name>
|
2021-02-24 01:14:55 +03:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/microsoft/jfr-streaming/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>release</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2022-07-11 18:21:29 +03:00
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>core</module>
|
|
|
|
</modules>
|
2021-03-16 17:51:13 +03:00
|
|
|
|
2021-01-29 22:40:32 +03:00
|
|
|
<properties>
|
2023-01-10 19:00:43 +03:00
|
|
|
<checkstyle.version>10.6.0</checkstyle.version>
|
|
|
|
<jreleaser.plugin.version>1.4.0</jreleaser.plugin.version>
|
2021-01-29 22:40:32 +03:00
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
2021-02-24 01:14:55 +03:00
|
|
|
<maven.compiler.testSource>8</maven.compiler.testSource>
|
|
|
|
<maven.compiler.testTarget>8</maven.compiler.testTarget>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-12-07 00:13:39 +03:00
|
|
|
<maven.antrun-plugin.version>3.1.0</maven.antrun-plugin.version>
|
|
|
|
<maven.changes-plugin.version>2.12.1</maven.changes-plugin.version>
|
|
|
|
<maven.checkstyle-plugin.version>3.2.0</maven.checkstyle-plugin.version>
|
|
|
|
<maven.clean-plugin.version>3.2.0</maven.clean-plugin.version>
|
|
|
|
<maven.compiler-plugin.version>3.10.1</maven.compiler-plugin.version>
|
|
|
|
<maven.dependency-plugin.version>3.3.0</maven.dependency-plugin.version>
|
|
|
|
<maven.deploy-plugin.version>3.0.0</maven.deploy-plugin.version>
|
|
|
|
<maven.directory-plugin.version>1.0</maven.directory-plugin.version>
|
|
|
|
<maven.enforcer-plugin.version>3.1.0</maven.enforcer-plugin.version>
|
|
|
|
<maven.exec-plugin.version>3.1.0</maven.exec-plugin.version>
|
|
|
|
<maven.gpg-plugin.version>3.0.1</maven.gpg-plugin.version>
|
2023-01-10 19:00:43 +03:00
|
|
|
<maven.install-plugin.version>3.1.0</maven.install-plugin.version>
|
2022-12-07 00:13:39 +03:00
|
|
|
<maven.jacoco-plugin.version>0.8.8</maven.jacoco-plugin.version>
|
|
|
|
<maven.jar-plugin.version>3.3.0</maven.jar-plugin.version>
|
|
|
|
<maven.javadoc-plugin.version>3.4.1</maven.javadoc-plugin.version>
|
|
|
|
<maven.jxr-plugin.version>3.3.0</maven.jxr-plugin.version>
|
|
|
|
<!-- See https://github.com/microsoft/gctoolkit/issues/68 as to why we cannot upgrade -->
|
|
|
|
<maven.license-plugin.version>1.20</maven.license-plugin.version>
|
|
|
|
<maven.nexus-staging-plugin.version>1.6.13</maven.nexus-staging-plugin.version>
|
|
|
|
<maven.pmd-plugin.version>3.19.0</maven.pmd-plugin.version>
|
|
|
|
<maven.project-info-reports-plugin.version>3.4.1</maven.project-info-reports-plugin.version>
|
|
|
|
<maven.rat-plugin.version>0.15</maven.rat-plugin.version>
|
|
|
|
<maven.resources-plugin.version>3.3.0</maven.resources-plugin.version>
|
2023-01-10 19:00:43 +03:00
|
|
|
<maven.site-plugin.version>4.0.0-M4</maven.site-plugin.version>
|
2022-12-07 00:13:39 +03:00
|
|
|
<maven.source-plugin.version>3.2.1</maven.source-plugin.version>
|
|
|
|
<maven.spotbugs-plugin.version>4.7.2.1</maven.spotbugs-plugin.version>
|
|
|
|
<maven.surefire-plugin.version>3.0.0-M7</maven.surefire-plugin.version>
|
2023-01-10 19:00:43 +03:00
|
|
|
<maven.version>3.8.7</maven.version>
|
|
|
|
<maven.versions-plugin.version>2.14.2</maven.versions-plugin.version>
|
2022-12-07 00:13:39 +03:00
|
|
|
<mutability.detector.version>0.9.1</mutability.detector.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.github.repository>microsoft/gctoolkit</project.github.repository>
|
|
|
|
<repository.url>git@github.com:${project.github.repository}.git</repository.url>
|
|
|
|
<spotbugs.version>4.7.3</spotbugs.version>
|
2021-01-29 22:40:32 +03:00
|
|
|
</properties>
|
|
|
|
|
2022-07-11 18:21:29 +03:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2023-01-10 19:00:43 +03:00
|
|
|
<!-- At 7.7.1 at time of last POM update, but 7.5 is the last Java 8 supported version, so we stay with that -->
|
2021-01-29 22:40:32 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
2023-05-09 21:59:35 +03:00
|
|
|
<version>7.5.1</version>
|
2021-01-29 22:40:32 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-05-13 15:30:50 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-testng</artifactId>
|
2023-01-10 19:00:43 +03:00
|
|
|
<version>0.4.31</version>
|
2021-05-13 15:30:50 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-01 19:56:16 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjdk.jmc</groupId>
|
|
|
|
<artifactId>flightrecorder</artifactId>
|
2022-12-07 00:13:39 +03:00
|
|
|
<version>8.3.0</version>
|
2022-07-01 19:56:16 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-11 18:21:29 +03:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-01-29 22:40:32 +03:00
|
|
|
|
|
|
|
<build>
|
2022-12-07 00:13:39 +03:00
|
|
|
|
|
|
|
<!-- NOTE: Some plugin configuration is set in the reporting section below as opposed to here by design -->
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
|
<version>${maven.spotbugs-plugin.version}</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs</artifactId>
|
|
|
|
<version>${spotbugs.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-changes-plugin</artifactId>
|
|
|
|
<version>${maven.changes-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>${maven.checkstyle-plugin.version}</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
<version>${checkstyle.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>${maven.clean-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven.compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<testSource>${maven.compiler.testSource}</testSource>
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
<testTarget>${maven.compiler.testTarget}</testTarget>
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>${maven.dependency-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>${maven.deploy-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>${maven.enforcer-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-maven</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireMavenVersion>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</requireMavenVersion>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>${maven.gpg-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>${maven.install-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>${maven.jar-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${maven.javadoc-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>${maven.jxr-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
<version>${maven.pmd-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>${maven.source-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven.surefire-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>${maven.site-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>${maven.project-info-reports-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>${maven.resources-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>${maven.antrun-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<version>${maven.rat-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>${maven.exec-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<version>${maven.license-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
|
|
<version>${maven.versions-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.commonjava.maven.plugins</groupId>
|
|
|
|
<artifactId>directory-maven-plugin</artifactId>
|
|
|
|
<version>${maven.directory-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>${maven.jacoco-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>${maven.nexus-staging-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>false</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
|
2021-01-29 22:40:32 +03:00
|
|
|
<plugins>
|
2021-02-24 01:14:55 +03:00
|
|
|
<plugin>
|
2022-12-07 00:13:39 +03:00
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2021-02-24 01:14:55 +03:00
|
|
|
</plugin>
|
2021-01-29 22:40:32 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-02-24 01:14:55 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-12-07 00:13:39 +03:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- address https://bugs.openjdk.java.net/browse/JDK-8212233 -->
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<detectJavaApiLink>false</detectJavaApiLink>
|
|
|
|
</configuration>
|
2021-02-24 01:14:55 +03:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-12-07 00:13:39 +03:00
|
|
|
<id>attach-javadocs</id>
|
2021-02-24 01:14:55 +03:00
|
|
|
<goals>
|
2022-12-07 00:13:39 +03:00
|
|
|
<goal>jar</goal>
|
2021-02-24 01:14:55 +03:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-12-07 00:13:39 +03:00
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2021-02-24 01:14:55 +03:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-12-07 00:13:39 +03:00
|
|
|
<id>attach-sources</id>
|
2021-02-24 01:14:55 +03:00
|
|
|
<goals>
|
2022-12-07 00:13:39 +03:00
|
|
|
<goal>jar-no-fork</goal>
|
2021-02-24 01:14:55 +03:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2021-01-29 22:40:32 +03:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-01-10 19:00:43 +03:00
|
|
|
<!-- If versions are not explicitly set it means they're inheriting from the pluginManagement section above -->
|
2022-12-07 00:13:39 +03:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mutabilitydetector</groupId>
|
|
|
|
<artifactId>MutabilityDetector4FindBugs</artifactId>
|
|
|
|
<version>${mutability.detector.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-changes-plugin</artifactId>
|
|
|
|
<!-- TODO This configuration is only for when we produce GitHub published reports -->
|
|
|
|
<configuration>
|
|
|
|
<githubAPIScheme>https</githubAPIScheme>
|
|
|
|
<githubAPIPort>443</githubAPIPort>
|
|
|
|
<includeOpenIssues>false</includeOpenIssues>
|
|
|
|
<onlyCurrentVersion>false</onlyCurrentVersion>
|
|
|
|
</configuration>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>changes-report</report>
|
|
|
|
<!-- TODO -->
|
|
|
|
<!-- <report>github-report</report> -->
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>checkstyle</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<targetJdk>${maven.compiler.target}</targetJdk>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>dependency-updates-report</report>
|
|
|
|
<report>plugin-updates-report</report>
|
|
|
|
<report>property-updates-report</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>${maven.jacoco-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
2021-01-29 22:40:32 +03:00
|
|
|
</project>
|