Skip to content

Commit dbbcba3

Browse files
committed
squash merge feature/scim into master.
1 parent 73cb666 commit dbbcba3

30 files changed

+603
-82
lines changed

build.savant

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
savantVersion = "1.0.0"
1717

18-
fusionauthJWTVersion = "3.6.0"
18+
fusionauthJWTVersion = "5.1.0"
1919
guavaVersion = "30.1.0-jre"
2020
guiceVersion = "5.1.0"
2121
jacksonVersion = "2.13.2"
@@ -24,7 +24,7 @@ javaErrorVersion = "2.2.3"
2424
restifyVersion = "3.9.0"
2525
testngVersion = "7.3.0"
2626

27-
project(group: "io.fusionauth", name: "fusionauth-java-client", version: "1.35.1", licenses: ["ApacheV2_0"]) {
27+
project(group: "io.fusionauth", name: "fusionauth-java-client", version: "1.36.0", licenses: ["ApacheV2_0"]) {
2828
workflow {
2929
fetch {
3030
cache()

fusionauth-java-client.iml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@
173173
<orderEntry type="module-library">
174174
<library>
175175
<CLASSES>
176-
<root url="jar://$USER_HOME$/.savant/cache/io/fusionauth/fusionauth-jwt/3.6.0/fusionauth-jwt-3.6.0.jar!/" />
176+
<root url="jar://$USER_HOME$/.savant/cache/io/fusionauth/fusionauth-jwt/5.1.0/fusionauth-jwt-5.1.0.jar!/" />
177177
</CLASSES>
178178
<JAVADOC />
179179
<SOURCES>
180-
<root url="jar://$USER_HOME$/.savant/cache/io/fusionauth/fusionauth-jwt/3.6.0/fusionauth-jwt-3.6.0-src.jar!/" />
180+
<root url="jar://$USER_HOME$/.savant/cache/io/fusionauth/fusionauth-jwt/5.1.0/fusionauth-jwt-5.1.0-src.jar!/" />
181181
</SOURCES>
182182
</library>
183183
</orderEntry>

pom.xml

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright (c) 2022, FusionAuth, All Rights Reserved
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing,
12+
~ software distributed under the License is distributed on an
13+
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14+
~ either express or implied. See the License for the specific
15+
~ language governing permissions and limitations under the License.
16+
-->
217
<project xmlns="http://maven.apache.org/POM/4.0.0"
318
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
419
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
520
<modelVersion>4.0.0</modelVersion>
621

722
<groupId>io.fusionauth</groupId>
823
<artifactId>fusionauth-java-client</artifactId>
9-
<version>1.35.1</version>
24+
<version>1.36.0</version>
1025
<packaging>jar</packaging>
1126

1227
<name>FusionAuth Java Client Library</name>
@@ -60,37 +75,37 @@
6075
<dependency>
6176
<groupId>com.fasterxml.jackson.core</groupId>
6277
<artifactId>jackson-core</artifactId>
63-
<version>2.12.2</version>
78+
<version>2.13.2</version>
6479
</dependency>
6580
<dependency>
6681
<groupId>com.fasterxml.jackson.core</groupId>
6782
<artifactId>jackson-databind</artifactId>
68-
<version>2.12.2</version>
83+
<version>2.13.2</version>
6984
</dependency>
7085
<dependency>
7186
<groupId>com.fasterxml.jackson.core</groupId>
7287
<artifactId>jackson-annotations</artifactId>
73-
<version>2.12.2</version>
88+
<version>2.13.2</version>
7489
</dependency>
7590
<dependency>
7691
<groupId>com.inversoft</groupId>
7792
<artifactId>restify</artifactId>
78-
<version>3.5.2</version>
93+
<version>3.9.0</version>
7994
</dependency>
8095
<dependency>
8196
<groupId>io.fusionauth</groupId>
8297
<artifactId>fusionauth-jwt</artifactId>
83-
<version>3.6.0</version>
98+
<version>5.1.0</version>
8499
</dependency>
85100
<dependency>
86101
<groupId>com.inversoft</groupId>
87102
<artifactId>jackson5</artifactId>
88-
<version>2.4.8</version>
103+
<version>2.6.1</version>
89104
</dependency>
90105
<dependency>
91106
<groupId>com.inversoft</groupId>
92107
<artifactId>java-error</artifactId>
93-
<version>2.2.2</version>
108+
<version>2.2.3</version>
94109
</dependency>
95110

96111
<dependency>

0 commit comments

Comments
 (0)