Skip to content

Commit 48bbeec

Browse files
committed
Gradle update + Shadow update + Dependency update
1 parent 386a56b commit 48bbeec

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

build.gradle

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
dependencies {
12-
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
12+
classpath 'com.github.johnrengelman:shadow:8.1.1'
1313
}
1414
}
1515

@@ -19,10 +19,12 @@ subprojects {
1919
apply plugin: 'com.github.johnrengelman.shadow'
2020
apply plugin: 'java'
2121

22-
sourceCompatibility = 1.8
23-
targetCompatibility = 1.8
22+
compileJava {
23+
sourceCompatibility = 1.8
24+
targetCompatibility = 1.8
25+
}
2426

25-
tasks.withType(JavaCompile) {
27+
tasks.withType(JavaCompile).configureEach {
2628
options.encoding = 'UTF-8'
2729
}
2830

@@ -45,8 +47,4 @@ subprojects {
4547
}
4648
}
4749
}
48-
49-
shadowJar {
50-
archiveFileName = "${baseName}-${classifier}.${extension}"
51-
}
5250
}

common/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
dependencies {
2-
implementation 'io.kubernetes:client-java:15.0.1'
3-
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.9.3'
2+
implementation 'io.kubernetes:client-java:18.0.1'
3+
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.11.0'
44

5-
compileOnly group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
5+
compileOnly group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
66

77
implementation project(":epsilon-exporter-api")
88
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repositories {
55
dependencies {
66
compileOnly 'org.github.paperspigot:paperspigot-api:1.8.8-R0.1-SNAPSHOT'
77

8-
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.9.3'
8+
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.11.0'
99

1010
implementation project(":epsilon-exporter-api")
1111
implementation project(":epsilon-exporter-common")

0 commit comments

Comments
 (0)