From d655f39e09b17cdf49dcc33b41ff5182f7656654 Mon Sep 17 00:00:00 2001 From: "Cloud.Liu" Date: Fri, 16 Apr 2021 21:24:07 +0800 Subject: [PATCH] =?UTF-8?q?DEC-17833=20fix:=20CBB=E7=8B=AC=E7=AB=8B?= =?UTF-8?q?=E5=8F=91=E5=B8=83=20third=E6=89=93=E5=8C=85=E8=84=9A=E6=9C=AC?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=20withCBB=E5=86=99=E5=8F=8D=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.third_step0.gradle | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.third_step0.gradle b/build.third_step0.gradle index c645ec92a..4621f51c5 100644 --- a/build.third_step0.gradle +++ b/build.third_step0.gradle @@ -99,7 +99,7 @@ publishing { third_build(MavenPublication) { groupId "com.fr.third" - artifactId project.hasProperty("withCBB") ? "fine-third-without-cbb" : "fine-third" + artifactId project.hasProperty("withCBB") ? "fine-third" : "fine-third-without-cbb" version maven_version_build ext.repo = 'snapshot' from components.java @@ -170,13 +170,10 @@ task unpack(type:Copy) { // 将essential依赖等级的jar全部解压到classes下 task unpackEssential(type:Copy) { if (project.hasProperty("withCBB")) { - println "withCBB" for (File file : configurations.essential.files) { from zipTree(file) } into classesDir - } else { - println "withoutCBB" } }