flare
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.zeridion</groupId>
<artifactId>flare</artifactId>
<version>0.2.1</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.zeridion</groupId>
<artifactId>flare</artifactId>
<version>0.2.1</version>
<packaging>jar</packaging>
<name>Zeridion Flare Java SDK</name>
<description>Official Java SDK for the Zeridion Flare managed background-jobs API.</description>
<url>https://docs.zeridion.com/flare</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Zeridion</name>
<email>support@zeridion.com</email>
<organization>Zeridion</organization>
<organizationUrl>https://zeridion.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/zeridion/flare-java.git</connection>
<developerConnection>scm:git:https://github.com/zeridion/flare-java.git</developerConnection>
<url>https://github.com/zeridion/flare-java</url>
</scm>
<properties>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jackson.version>2.18.9</jackson.version>
<junit.version>5.11.4</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
</plugin>
<!--
Maven Central publish requires:
- a sources jar (maven-source-plugin)
- a javadoc jar (maven-javadoc-plugin)
- GPG-signed artifacts (maven-gpg-plugin)
These plugins only fire under the `release` profile so day-to-day
`mvn install` stays fast and unsigned.
-->
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<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-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<!-- Central requires a javadoc jar to exist, not to be
doclint-clean; @apiNote is a JDK-style custom tag that
must be registered for user code. -->
<doclint>none</doclint>
<tags>
<tag><name>apiNote</name><placement>a</placement><head>API Note:</head></tag>
<tag><name>implSpec</name><placement>a</placement><head>Implementation Requirements:</head></tag>
<tag><name>implNote</name><placement>a</placement><head>Implementation Note:</head></tag>
</tags>
</configuration>
<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.2.7</version>
<configuration>
<!-- CI has no pinentry; the passphrase arrives via -Dgpg.passphrase -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<!-- Uploads the signed bundle to the Central portal
(https://central.sonatype.com). Credentials come from the
settings.xml <server> whose id matches publishingServerId.
waitUntil=validated fails fast on validation errors without
blocking CI on full publish propagation. -->
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>validated</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>