Skip to content

Commit b90a83f

Browse files
Bump com.gradle.plugin-publish to 1.2.1 AND com.github.johnrengelman.shadow to 7.1.2
Updates to the latest `com.gradle.plugin-publish` plugin, which required updating `com.github.johnrengelman.shadow` from `5.0.0` to `7.1.2`. It's not possible to update to a later version of `com.github.johnrengelman.shadow` as v8+ requires Gradle 8+, which would mean dropping support for earlier versions of Gradle. One for another day.
1 parent 71ff4e8 commit b90a83f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ plugins {
22
id 'eclipse'
33
id 'java-gradle-plugin'
44
id 'maven-publish' // used for publishing to local maven repository
5-
id 'com.gradle.plugin-publish' version '0.12.0'
6-
id 'com.github.johnrengelman.shadow' version '5.0.0'
5+
id 'com.gradle.plugin-publish' version '1.2.0'
6+
id 'com.github.johnrengelman.shadow' version '7.1.2'
77
id 'com.github.ben-manes.versions' version '0.51.0'
88
}
99

@@ -44,7 +44,7 @@ dependencies {
4444

4545
shadowJar {
4646
configurations = [project.configurations.plugin]
47-
classifier = null
47+
archiveClassifier = null
4848
dependencies {
4949
include(dependency('com.github.javaparser:javaparser-symbol-solver-core'))
5050
include(dependency('com.github.javaparser:javaparser-symbol-solver-logic'))

0 commit comments

Comments
 (0)