Skip to content
Merged
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
3 changes: 1 addition & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-datab
jackson-parameter-names = { group = "com.fasterxml.jackson.module", name = "jackson-module-parameter-names" }

apache-commons-io = { group = "commons-io", name = "commons-io", version = "2.21.0" }
apache-log4j-core = { group = "org.apache.logging.log4j", name = "log4j-core", version = "2.25.4" }

github-packageurl = { group = "com.github.package-url", name = "packageurl-java", version = "1.5.0" }

Expand All @@ -25,5 +24,5 @@ jetbrains-annotations = { group = "org.jetbrains", name = "annotations", version
google-gson = { group = "com.google.code.gson", name = "gson", version = "2.13.2" }

[plugins]
shadow-jar = { id = "com.gradleup.shadow", version = "9.2.2"}
shadow-jar = { id = "com.gradleup.shadow", version = "9.4.3"}
plugin-publish = { id = "com.gradle.plugin-publish", version = "2.1.0" }
15 changes: 0 additions & 15 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,6 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

// Upgrade transitive dependencies in plugin classpath
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
constraints {
// The com.gradleup.shadow plugin depends on vulnerable library releases.
// We constrain these to newer, patched versions.
classpath(libs.apache.commons.io)
classpath(libs.apache.log4j.core)
}
}
}

plugins {
kotlin("jvm") version(libs.versions.kotlin)
alias(libs.plugins.plugin.publish)
Expand Down
Loading