Skip to content

Commit 482b0db

Browse files
committed
chore: update dependencies, fix implementationDependencies.json
1 parent abf8a2b commit 482b0db

File tree

2 files changed

+37
-28
lines changed

2 files changed

+37
-28
lines changed

build.gradle

+11-7
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,21 @@ repositories {
2525
mavenCentral()
2626
}
2727

28+
2829
dependencies {
2930

3031
// https://mvnrepository.com/artifact/com.google.code.gson/gson
3132
// if this changes, remember to also change in the ee folder's build.gradle
3233
implementation group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
3334

3435
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
35-
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1'
36+
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.18.2'
37+
38+
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor
39+
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-cbor', version: '2.18.2'
3640

3741
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
38-
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.16.1'
42+
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.18.2'
3943

4044
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
4145
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14'
@@ -76,13 +80,11 @@ dependencies {
7680
// https://mvnrepository.com/artifact/com.webauthn4j/webauthn4j-core
7781
implementation group: 'com.webauthn4j', name: 'webauthn4j-core', version: '0.28.6.RELEASE'
7882

79-
// https://mvnrepository.com/artifact/com.webauthn4j/webauthn4j-test
80-
implementation group: 'com.webauthn4j', name: 'webauthn4j-test', version: '0.28.6.RELEASE'
81-
8283
compileOnly project(":supertokens-plugin-interface")
83-
testImplementation project(":supertokens-plugin-interface")
8484

8585
// this is so that we can find plugin-interface jar while testing
86+
testImplementation project(":supertokens-plugin-interface")
87+
8688
testImplementation 'junit:junit:4.12'
8789

8890
// https://mvnrepository.com/artifact/org.mockito/mockito-core
@@ -92,8 +94,10 @@ dependencies {
9294
testImplementation group: 'org.reflections', name: 'reflections', version: '0.9.10'
9395

9496
testImplementation 'com.tngtech.archunit:archunit-junit4:0.22.0'
95-
}
9697

98+
// https://mvnrepository.com/artifact/com.webauthn4j/webauthn4j-test
99+
testImplementation group: 'com.webauthn4j', name: 'webauthn4j-test', version: '0.28.6.RELEASE'
100+
}
97101
application {
98102
mainClass.set("io.supertokens.Main")
99103
}

implementationDependencies.json

+26-21
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,34 @@
77
"src": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.3.1/gson-2.3.1-sources.jar"
88
},
99
{
10-
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.16.1/jackson-dataformat-yaml-2.16.1.jar",
11-
"name": "Jackson Dataformat 2.16.1",
12-
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.16.1/jackson-dataformat-yaml-2.16.1-sources.jar"
10+
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.jar",
11+
"name": "Jackson Dataformat 2.18.2",
12+
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2-sources.jar"
1313
},
1414
{
15-
"jar": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar",
16-
"name": "SnakeYAML 2.2",
17-
"src": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/2.2/snakeyaml-2.2-sources.jar"
15+
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.18.2/jackson-dataformat-cbor-2.18.2.jar",
16+
"name": "Jackson Dataformat CBOR 2.18.2",
17+
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.18.2/jackson-dataformat-cbor-2.18.2-sources.jar"
1818
},
1919
{
20-
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.16.1/jackson-core-2.16.1.jar",
21-
"name": "Jackson core 2.16.1",
22-
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.16.1/jackson-core-2.16.1-sources.jar"
20+
"jar": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/2.3/snakeyaml-2.3.jar",
21+
"name": "SnakeYAML 2.3",
22+
"src": "https://repo1.maven.org/maven2/org/yaml/snakeyaml/2.3/snakeyaml-2.3-sources.jar"
2323
},
2424
{
25-
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.16.1/jackson-databind-2.16.1.jar",
26-
"name": "Jackson databind 2.16.1",
27-
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.16.1/jackson-databind-2.16.1-sources.jar"
25+
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar",
26+
"name": "Jackson core 2.18.2",
27+
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2-sources.jar"
2828
},
2929
{
30-
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.16.1/jackson-annotations-2.16.1.jar",
31-
"name": "Jackson annotation 2.16.1",
32-
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.16.1/jackson-annotations-2.16.1-sources.jar"
30+
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar",
31+
"name": "Jackson databind 2.18.2",
32+
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2-sources.jar"
33+
},
34+
{
35+
"jar": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar",
36+
"name": "Jackson annotation 2.18.2",
37+
"src": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2-sources.jar"
3338
},
3439
{
3540
"jar": "https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.jar",
@@ -42,9 +47,9 @@
4247
"src": "https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14-sources.jar"
4348
},
4449
{
45-
"jar": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar",
46-
"name": "SLF4j API 2.0.7",
47-
"src": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7-sources.jar"
50+
"jar": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar",
51+
"name": "SLF4j API 2.0.16",
52+
"src": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16-sources.jar"
4853
},
4954
{
5055
"jar": "https://repo1.maven.org/maven2/org/apache/tomcat/tomcat-annotations-api/10.1.18/tomcat-annotations-api-10.1.18.jar",
@@ -122,9 +127,9 @@
122127
"src": "https://repo1.maven.org/maven2/com/webauthn4j/webauthn4j-core/0.28.6.RELEASE/webauthn4j-core-0.28.6.RELEASE-sources.jar"
123128
},
124129
{
125-
"jar": "https://repo1.maven.org/maven2/com/webauthn4j/webauthn4j-test/0.28.6.RELEASE/webauthn4j-test-0.28.6.RELEASE.jar",
126-
"name": "webauthn4j-test 0.28.6.RELEASE",
127-
"src": "https://repo1.maven.org/maven2/com/webauthn4j/webauthn4j-test/0.28.6.RELEASE/webauthn4j-test-0.28.6.RELEASE-sources.jar"
130+
"jar": "https://repo1.maven.org/maven2/com/webauthn4j/webauthn4j-util/0.28.6.RELEASE/webauthn4j-util-0.28.6.RELEASE.jar",
131+
"name": "webauthn4j-util 0.28.6.RELEASE",
132+
"src": "https://repo1.maven.org/maven2/com/webauthn4j/webauthn4j-util/0.28.6.RELEASE/webauthn4j-util-0.28.6.RELEASE-sources.jar"
128133
}
129134
]
130135
}

0 commit comments

Comments
 (0)