Skip to content

Commit 5dccecc

Browse files
Dharmeshreta
authored andcommitted
Update to Gradle 8.5 (opensearch-project#617)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent 1d6e66e commit 5dccecc

34 files changed

Lines changed: 25 additions & 27 deletions

build.gradle

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ buildscript {
4747

4848
plugins {
4949
id 'java'
50-
id 'nebula.ospackage' version "8.3.0"
50+
id 'com.netflix.nebula.ospackage' version "11.6.0"
5151
id 'com.github.spotbugs' version '5.0.13'
5252
id 'jacoco'
5353
id 'com.diffplug.spotless' version '5.11.0'
@@ -217,9 +217,9 @@ jacoco {
217217

218218
jacocoTestReport {
219219
reports {
220-
xml.enabled true
221-
html.enabled true
222-
csv.enabled false
220+
xml.required = true
221+
html.required = true
222+
csv.required = false
223223
}
224224
afterEvaluate {
225225
classDirectories.from = files(classDirectories.files.collect {
@@ -872,10 +872,9 @@ afterEvaluate {
872872
task renameRpm(type: Copy) {
873873
from("$buildDir/distributions")
874874
into("$buildDir/distributions")
875-
include archiveName
876-
rename archiveName, "${packageName}-${version}.rpm"
875+
rename "$archiveFileName", "${packageName}-${version}.rpm"
877876
doLast {
878-
delete file("$buildDir/distributions/$archiveName")
877+
delete file("$buildDir/distributions/$archiveFileName")
879878
}
880879
}
881880
}
@@ -889,10 +888,9 @@ afterEvaluate {
889888
task renameDeb(type: Copy) {
890889
from("$buildDir/distributions")
891890
into("$buildDir/distributions")
892-
include archiveName
893-
rename archiveName, "${packageName}-${version}.deb"
891+
rename "$archiveFileName", "${packageName}-${version}.deb"
894892
doLast {
895-
delete file("$buildDir/distributions/$archiveName")
893+
delete file("$buildDir/distributions/$archiveFileName")
896894
}
897895
}
898896
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
LICENSE
2-
Copyright (c) 2000 - 2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org)
2+
Copyright (c) 2000 - 2024 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org)
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55

licenses/jackson-annotations-2.15.2.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fd441d574a71e7d10a4f73de6609f881d8cdfeec

licenses/jackson-databind-2.15.2.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
02a16efeb840c45af1e2f31753dfe76795278b73

licenses/jackson-module-paranamer-2.15.2.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8ccd968bf3c07b7a67f099ca8709b3fed5ffedae

0 commit comments

Comments
 (0)