async-bulkhead-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.janbalangue</groupId>
<artifactId>async-bulkhead-parent</artifactId>
<version>0.5.2</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>
<!-- ========================================================= -->
<!-- Parent coordinates (BUILD ONLY, NOT A LIBRARY) -->
<!-- ========================================================= -->
<groupId>io.github.janbalangue</groupId>
<artifactId>async-bulkhead-parent</artifactId>
<version>0.5.2</version>
<packaging>pom</packaging>
<name>Async Bulkhead (Parent)</name>
<description>Build and release parent for async-bulkhead</description>
<!-- ========================================================= -->
<!-- Modules -->
<!-- ========================================================= -->
<modules>
<module>async-bulkhead</module>
</modules>
<!-- ========================================================= -->
<!-- Project metadata (inherited by children) -->
<!-- ========================================================= -->
<url>https://github.com/janbalangue/async-bulkhead</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>
<distributionManagement>
<repository>
<id>central</id>
<name>Central (OSSRH Staging API compatibility)</name>
<url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url>
</repository>
<!-- Optional, only if you ever deploy snapshots -->
<snapshotRepository>
<id>central</id>
<name>Central Snapshots</name>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<scm>
<url>https://github.com/janbalangue/async-bulkhead</url>
<connection>scm:git:https://github.com/janbalangue/async-bulkhead.git</connection>
<developerConnection>scm:git:git@github.com:janbalangue/async-bulkhead.git</developerConnection>
<tag>v0.5.2</tag>
</scm>
<developers>
<developer>
<id>janbalangue</id>
<name>Jay Balangue</name>
<url>https://github.com/janbalangue</url>
</developer>
</developers>
<!-- ========================================================= -->
<!-- Properties -->
<!-- ========================================================= -->
<properties>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.10.1</junit.version>
<jacoco.skip>false</jacoco.skip>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<!-- ========================================================= -->
<!-- Dependency Management -->
<!-- ========================================================= -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- ========================================================= -->
<!-- Plugin Management -->
<!-- ========================================================= -->
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.14</version>
<configuration>
<skip>${jacoco.skip}</skip>
</configuration>
<executions>
<execution>
<id>prepare-agent</id>
<goals><goal>prepare-agent</goal></goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals><goal>report</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- ========================================================= -->
<!-- Release profile (used only by CI) -->
<!-- ========================================================= -->
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
</profiles>
</project>