fusionauth-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.fusionauth</groupId> <artifactId>fusionauth-java-client</artifactId> <version>1.59.0</version> </dependency>
<!-- ~ Copyright (c) 2022-2025, FusionAuth, All Rights Reserved ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, ~ either express or implied. See the License for the specific ~ language governing permissions and limitations under the License. --><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.fusionauth</groupId> <artifactId>fusionauth-java-client</artifactId> <version>1.59.0</version> <packaging>jar</packaging> <name>FusionAuth Java Client Library</name> <description>The Java Client library provides a native Java binding to the FusionAuth REST API.</description> <url>https://fusionauth.io</url> <distributionManagement> <snapshotRepository> <name>Central Portal Snapshots</name> <id>central-portal-snapshots</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </snapshotRepository> </distributionManagement> <developers> <developer> <name>Brian Pontarelli</name> <email>brian@fusionauth.io</email> <organization>FusionAuth</organization> <organizationUrl>https://fusionauth.io</organizationUrl> </developer> <developer> <name>Daniel DeGroff</name> <email>daniel@fusionauth.io</email> <organization>FusionAuth</organization> <organizationUrl>https://fusionauth.io</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:ssh://github.com:FusionAuth/fusionauth-java-client</connection> <url>https://github.com/FusionAuth/fusionauth-java-client</url> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.15.4</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.15.4</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.15.4</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>com.inversoft</groupId> <artifactId>jackson5</artifactId> <version>3.0.1</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>com.inversoft</groupId> <artifactId>java-error</artifactId> <version>2.2.3</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>com.inversoft</groupId> <artifactId>restify</artifactId> <version>4.3.0</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>io.fusionauth</groupId> <artifactId>fusionauth-jwt</artifactId> <version>5.2.4</version> <type>jar</type> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.5.1</version> <type>jar</type> <scope>test</scope> <optional>false</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.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.4.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <skip>false</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>