From efb36c3fd7987c5e61c43cce75a6320071a404f8 Mon Sep 17 00:00:00 2001 From: "Cloud.Liu" Date: Mon, 25 Oct 2021 18:41:54 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-60245=20fix:=20TongWeb=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.third_step0.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.third_step0.gradle b/build.third_step0.gradle index 4621f51c5..741f21761 100644 --- a/build.third_step0.gradle +++ b/build.third_step0.gradle @@ -171,7 +171,9 @@ task unpack(type:Copy) { task unpackEssential(type:Copy) { if (project.hasProperty("withCBB")) { for (File file : configurations.essential.files) { - from zipTree(file) + from (zipTree(file)) { + exclude "META-INF/versions/11/*" + } } into classesDir }