From 3f9359c031a321d1e9302ed362adb82cde991f04 Mon Sep 17 00:00:00 2001 From: Thad House Date: Sun, 28 Jun 2020 16:15:56 -0700 Subject: [PATCH] Fix deprecation warnings --- config.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.gradle b/config.gradle index 117de3f..0cf49f1 100644 --- a/config.gradle +++ b/config.gradle @@ -95,9 +95,9 @@ ext.createComponentZipTasks = { components, names, base, type, project, func -> configMap.each { key, value -> def task = project.tasks.create(base + "-${key}", type) { description = 'Creates component archive for platform ' + key - destinationDir = outputsFolder + destinationDirectory = outputsFolder classifier = key - baseName = '_M_' + base + archiveBaseName = '_M_' + base duplicatesStrategy = 'exclude' from(licenseFile) { @@ -123,9 +123,9 @@ ext.createAllCombined = { list, name, base, type, project -> def task = project.tasks.create(base + "-all", type) { description = "Creates component archive for all classifiers" - destinationDir = outputsFolder + destinationDirectory = outputsFolder classifier = "all" - baseName = base + archiveBaseName = base duplicatesStrategy = 'exclude' list.each {