Skip to content

Bumped dependencies on dev-tools #1598

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 5, 2023
Merged
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
17 changes: 11 additions & 6 deletions ml-development-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,22 @@ plugins {
}

dependencies {
compileOnly gradleApi()
implementation project(':marklogic-client-api')
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.15.2'
implementation 'com.networknt:json-schema-validator:1.0.76'
compileOnly gradleApi()
implementation project(':marklogic-client-api')
// Sticking with 1.6.20 for now as that's what OkHttp 4.11.0 depends on.
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.15.2'
implementation 'com.networknt:json-schema-validator:1.0.86'

// Not yet migrating this project to JUnit 5. Will reconsider it once we have a reason to enhance
// this project.
testImplementation 'junit:junit:4.13.2'
testImplementation 'xmlunit:xmlunit:1.6'
testCompileOnly gradleTestKit()
testImplementation 'com.squareup.okhttp3:okhttp:4.10.0'

// Forcing usage of 3.4.0 instead of 3.2.0 to address vulnerability - https://security.snyk.io/vuln/SNYK-JAVA-COMSQUAREUPOKIO-5820002
testImplementation 'com.squareup.okio:okio:3.4.0'
testImplementation 'com.squareup.okhttp3:okhttp:4.11.0'
}

// Added to avoid problem where processResources fails because - somehow - the plugin properties file is getting
Expand All @@ -38,6 +42,7 @@ pluginBundle {
vcsUrl = 'https://github.com/marklogic/java-client-api.git'
tags = ['marklogic']
}

gradlePlugin {
plugins {
mlDevelopmentToolsPlugin {
Expand Down