Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.gradle.api.tasks.testing.logging.TestLogEvent

plugins {
id 'org.sonarqube' version '7.2.3.7755' apply false
id 'org.sonarqube' version '7.3.0.8198' apply false
}

subprojects {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 10 additions & 21 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ tasks.named('jar', Jar) {

def jsonProviders = [
[id : 'jackson', additionalVersions: ['2.2.0'],
group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.2'],
group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.3'],
[id : 'gson', additionalVersions: ['2.3'],
group: 'com.google.code.gson', name: 'gson', version: '2.13.2'],
group: 'com.google.code.gson', name: 'gson', version: '2.14.0'],
[id : 'orgJson', additionalVersions: ['20201115'],
group: 'org.json', name: 'json', version: '20251224'],
[id : 'kotlinxJson', additionalVersions: ['1.0.0'],
Expand Down Expand Up @@ -56,13 +56,13 @@ dependencies {
jakartaJsonTestImplementation 'org.eclipse.parsson:parsson:1.1.7'
testRuntimeOnly 'org.eclipse.parsson:parsson:1.1.7'

testFixturesApi 'org.junit.platform:junit-platform-launcher:1.14.3'
testFixturesApi 'org.junit.jupiter:junit-jupiter-api:5.14.3'
testFixturesApi 'org.junit.jupiter:junit-jupiter:5.14.3'
testFixturesApi 'org.junit.platform:junit-platform-launcher:1.14.4'
testFixturesApi 'org.junit.jupiter:junit-jupiter-api:5.14.4'
testFixturesApi 'org.junit.jupiter:junit-jupiter:5.14.4'
testFixturesApi 'org.assertj:assertj-core:3.27.7'
testFixturesApi 'org.mockito:mockito-core:5.23.0'
testFixturesApi 'com.sanctionco.jmail:jmail:2.1.0'
testFixturesRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.14.3'
testFixturesRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.14.4'
}

processTestFixturesResources {
Expand Down
2 changes: 1 addition & 1 deletion providers/jackson3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ compileJava {

dependencies {
api project(':json-schema')
implementation 'tools.jackson.core:jackson-databind:3.1.2'
implementation 'tools.jackson.core:jackson-databind:3.1.3'

testImplementation testFixtures(project(':json-schema'))
}
Expand Down
Loading