[bazel, gradle] Fix deprecation warnings for gradle 10 and Bazel build (#8597)

This commit is contained in:
Thad House
2026-01-31 16:36:41 -08:00
committed by GitHub
parent 0001ddc7ec
commit a2a40b56d1
5 changed files with 5 additions and 5 deletions

View File

@@ -55,7 +55,7 @@ model {
if (binary.targetPlatform.operatingSystem.isMacOsX()) {
// Create the macOS bundle.
def bundleTask = project.tasks.create("bundleDataLogToolOsxApp" + binary.targetPlatform.architecture.name, Copy) {
description("Creates a macOS application bundle for DataLogTool")
description = "Creates a macOS application bundle for DataLogTool"
from(file("$project.projectDir/Info.plist"))
into(file("$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/DataLogTool.app/Contents"))
into("MacOS") {

View File

@@ -55,7 +55,7 @@ model {
if (binary.targetPlatform.operatingSystem.isMacOsX()) {
// Create the macOS bundle.
def bundleTask = project.tasks.create("bundleOutlineViewerOsxApp" + binary.targetPlatform.architecture.name, Copy) {
description("Creates a macOS application bundle for OutlineViewer")
description = "Creates a macOS application bundle for OutlineViewer"
from(file("$project.projectDir/Info.plist"))
into(file("$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/OutlineViewer.app/Contents"))
into("MacOS") {

View File

@@ -59,7 +59,7 @@ model {
if (binary.targetPlatform.operatingSystem.isMacOsX()) {
// Create the macOS bundle.
def bundleTask = project.tasks.create("bundlewpicalOsxApp" + binary.targetPlatform.architecture.name, Copy) {
description("Creates a macOS application bundle for wpical")
description = "Creates a macOS application bundle for wpical"
from(file("$project.projectDir/Info.plist"))
into(file("$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/wpical.app/Contents"))
into("MacOS") {