Skip to content
Open
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
Expand Up @@ -2,7 +2,7 @@ import de.undercouch.gradle.tasks.download.Download

plugins {
// https://plugins.gradle.org/plugin/com.gradleup.shadow
id 'com.gradleup.shadow' version '8.3.10'
id 'com.gradleup.shadow' version '9.4.1'
// https://plugins.gradle.org/plugin/de.undercouch.download
id 'de.undercouch.download' version '5.7.0'
id 'java'
Expand Down
2 changes: 1 addition & 1 deletion checker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ final checkerPom(publication) {
publishing {
publications {
checker(MavenPublication) {
project.shadow.component it
from(components.shadow)
checkerPom it
artifact checkerJar
artifact allSourcesJar
Expand Down
5 changes: 1 addition & 4 deletions gradle-mvn-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

final isSnapshot = version.contains('SNAPSHOT')
// https://github.com/johnrengelman/shadow/issues/586#issuecomment-708375599
components.java.withVariantsFromConfiguration(configurations.shadowRuntimeElements) {
skip()
}

publishing {
repositories {
maven {
Expand Down
Loading