Skip to content

Commit

Permalink
update to gradle 8 (#1048)
Browse files Browse the repository at this point in the history
Shadow plugin updated to latest version to fix compatiblity
issues with gradle 8.
  • Loading branch information
brharrington authored Mar 30, 2023
1 parent 37504a0 commit 1519f00
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions spectator-agent/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

dependencies {
Expand All @@ -23,7 +23,7 @@ jar {
}

shadowJar {
classifier = 'shadow'
archiveClassifier = 'shadow'
configurations = [project.configurations.runtimeClasspath]
relocate('com.netflix.spectator', 'spectator-agent.spectator')
relocate('com.fasterxml', 'spectator-agent.json')
Expand Down
4 changes: 2 additions & 2 deletions spectator-ext-spark/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

dependencies {
Expand All @@ -23,7 +23,7 @@ jar {
}

shadowJar {
classifier = 'shadow'
archiveClassifier = 'shadow'

// Combine all the reference.conf and application.conf so all default props will be
// available
Expand Down
2 changes: 1 addition & 1 deletion spectator-reg-atlas/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.util.zip.ZipFile

plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion spectator-web-spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.util.zip.ZipFile

plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

dependencies {
Expand Down

0 comments on commit 1519f00

Please sign in to comment.