mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-04-25 17:25:17 +02:00
Fix several Gradle 8.x compatibility issues
Addressed the following deprecations: * [JacocoMerge task removed:](https://docs.gradle.org/current/userguide/upgrading_version_7.html#jacocomerge_task_removed) deleted jacocoMerge task, moved its inputs to jacocoReport. * [`classifier` property removed from archive tasks:](https://docs.gradle.org/current/userguide/upgrading_version_7.html#abstractarchivetask_api_cleanup) replaced `classifier` calls with `archiveClassifier.set`. * [execResult getter property removed from exec tasks:](https://docs.gradle.org/current/userguide/upgrading_version_7.html#abstractexectask_api_cleanup) replaced with `executionResult.get`.
This commit is contained in:
@@ -137,12 +137,12 @@ configurations {
|
||||
}
|
||||
|
||||
task testJar(type: Jar) {
|
||||
classifier "test" // value part of file name
|
||||
archiveClassifier.set("test") // value part of file name
|
||||
from sourceSets.test.output
|
||||
}
|
||||
|
||||
task integrationTestJar(type: Jar) {
|
||||
classifier "integrationTest" // value part of file name
|
||||
archiveClassifier.set("integrationTest") // value part of file name
|
||||
from sourceSets.integrationTest.output
|
||||
}
|
||||
artifacts {
|
||||
|
||||
Reference in New Issue
Block a user