Skip to content

Commit c1bf12e

Browse files
committed
1 parent f2b2150 commit c1bf12e

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

build.savant

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
*/
1616

1717
fusionauthJWTVersion = "5.2.4"
18-
jacksonVersion = "2.15.3"
18+
jacksonVersion = "2.15.4"
1919
jackson5Version = "3.0.1"
2020
javaErrorVersion = "2.2.3"
21-
restifyVersion = "4.1.2"
21+
restifyVersion = "4.2.1"
2222
testngVersion = "7.5.1"
2323

2424
project(group: "io.fusionauth", name: "fusionauth-java-client", version: "1.50.1", licenses: ["ApacheV2_0"]) {

fusionauth-java-client.iml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
<orderEntry type="module-library">
3333
<library>
3434
<CLASSES>
35-
<root url="jar://$MODULE_DIR$/.savant/cache/com/inversoft/restify/4.1.2/restify-4.1.2.jar!/" />
35+
<root url="jar://$MODULE_DIR$/.savant/cache/com/inversoft/restify/4.2.1/restify-4.2.1.jar!/" />
3636
</CLASSES>
3737
<JAVADOC />
3838
<SOURCES>
39-
<root url="jar://$MODULE_DIR$/.savant/cache/com/inversoft/restify/4.1.2/restify-4.1.2-src.jar!/" />
39+
<root url="jar://$MODULE_DIR$/.savant/cache/com/inversoft/restify/4.2.1/restify-4.2.1-src.jar!/" />
4040
</SOURCES>
4141
</library>
4242
</orderEntry>
@@ -65,33 +65,33 @@
6565
<orderEntry type="module-library">
6666
<library>
6767
<CLASSES>
68-
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-databind/2.15.3/jackson-databind-2.15.3.jar!/" />
68+
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.jar!/" />
6969
</CLASSES>
7070
<JAVADOC />
7171
<SOURCES>
72-
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-databind/2.15.3/jackson-databind-2.15.3-src.jar!/" />
72+
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4-sources.jar!/" />
7373
</SOURCES>
7474
</library>
7575
</orderEntry>
7676
<orderEntry type="module-library">
7777
<library>
7878
<CLASSES>
79-
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-annotations/2.15.3/jackson-annotations-2.15.3.jar!/" />
79+
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.jar!/" />
8080
</CLASSES>
8181
<JAVADOC />
8282
<SOURCES>
83-
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-annotations/2.15.3/jackson-annotations-2.15.3-src.jar!/" />
83+
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4-sources.jar!/" />
8484
</SOURCES>
8585
</library>
8686
</orderEntry>
8787
<orderEntry type="module-library">
8888
<library>
8989
<CLASSES>
90-
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-core/2.15.3/jackson-core-2.15.3.jar!/" />
90+
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.jar!/" />
9191
</CLASSES>
9292
<JAVADOC />
9393
<SOURCES>
94-
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-core/2.15.3/jackson-core-2.15.3-src.jar!/" />
94+
<root url="jar://$MODULE_DIR$/.savant/cache/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4-sources.jar!/" />
9595
</SOURCES>
9696
</library>
9797
</orderEntry>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,23 +73,23 @@
7373
<dependency>
7474
<groupId>com.fasterxml.jackson.core</groupId>
7575
<artifactId>jackson-annotations</artifactId>
76-
<version>2.15.3</version>
76+
<version>2.15.4</version>
7777
<type>jar</type>
7878
<scope>compile</scope>
7979
<optional>false</optional>
8080
</dependency>
8181
<dependency>
8282
<groupId>com.fasterxml.jackson.core</groupId>
8383
<artifactId>jackson-core</artifactId>
84-
<version>2.15.3</version>
84+
<version>2.15.4</version>
8585
<type>jar</type>
8686
<scope>compile</scope>
8787
<optional>false</optional>
8888
</dependency>
8989
<dependency>
9090
<groupId>com.fasterxml.jackson.core</groupId>
9191
<artifactId>jackson-databind</artifactId>
92-
<version>2.15.3</version>
92+
<version>2.15.4</version>
9393
<type>jar</type>
9494
<scope>compile</scope>
9595
<optional>false</optional>
@@ -113,7 +113,7 @@
113113
<dependency>
114114
<groupId>com.inversoft</groupId>
115115
<artifactId>restify</artifactId>
116-
<version>4.1.2</version>
116+
<version>4.2.1</version>
117117
<type>jar</type>
118118
<scope>compile</scope>
119119
<optional>false</optional>

0 commit comments

Comments
 (0)