qredex-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.qredex</groupId>
<artifactId>qredex-java</artifactId>
<version>0.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
▄▄▄▄
▄█▀▀███▄▄ █▄
██ ██ ▄ ██
██ ██ ████▄▄█▀█▄ ▄████ ▄█▀█▄▀██ ██▀
██ ▄ ██ ██ ██▄█▀ ██ ██ ██▄█▀ ███
▀█████▄▄█▀ ▄▀█▄▄▄▄█▀███▄▀█▄▄▄▄██ ██▄
▀█
Copyright (C) 2026 — 2026, Qredex, LTD. All Rights Reserved.
Licensed under the Apache License, Version 2.0. See LICENSE for the full license text.
-->
<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.qredex</groupId>
<artifactId>qredex-java</artifactId>
<version>0.1.1</version>
<packaging>jar</packaging>
<name>Qredex Java Server SDK</name>
<description>Official Qredex Java server SDK for machine-to-machine integrations.</description>
<url>https://github.com/qredex/qredex-java</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<organization>
<name>Qredex, LTD</name>
<url>https://qredex.com</url>
</organization>
<developers>
<developer>
<name>bobai</name>
<email>bobai@qredex.com</email>
<organization>Qredex, LTD</organization>
<organizationUrl>https://qredex.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Qredex/qredex-java.git</connection>
<developerConnection>scm:git:ssh://github.com:Qredex/qredex-java.git</developerConnection>
<url>https://github.com/Qredex/qredex-java</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/Qredex/qredex-java/issues</url>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>8</maven.compiler.release>
<gpg.skip>true</gpg.skip>
<!-- Core dependencies -->
<okhttp.version>4.12.0</okhttp.version>
<jackson.version>2.17.2</jackson.version>
<!-- Test dependencies -->
<junit.version>5.10.3</junit.version>
<wiremock.version>2.35.2</wiremock.version>
<assertj.version>3.26.3</assertj.version>
</properties>
<dependencies>
<!-- Public nullability metadata for Kotlin/Java interop -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
</dependency>
<!-- HTTP client: OkHttp 4.x supports Java 8+ -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<!-- JSON: Jackson databind -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Test: JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Test: WireMock for HTTP mocking (2.x for Java 8 compatibility) -->
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>${wiremock.version}</version>
<scope>test</scope>
</dependency>
<!-- Test: AssertJ -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Compiler: enforce Java 8 classfile and API compatibility -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>${maven.compiler.release}</release>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- Surefire: run JUnit 5 tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>8</source>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
<!-- Sources jar -->
<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>
<!-- GPG signing for Maven Central releases only -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</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>
<skip>${gpg.skip}</skip>
</configuration>
</execution>
</executions>
</plugin>
<!-- Sonatype Central Portal publishing -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- Skip GPG signing when -DskipGPG=true is passed -->
<profile>
<id>skip-gpg</id>
<activation>
<property>
<name>skipGPG</name>
<value>true</value>
</property>
</activation>
<properties>
<gpg.skip>true</gpg.skip>
</properties>
</profile>
</profiles>
</project>