Browse Source

Pull request #3765: REPORT-60245 fix: TongWeb启动失败

Merge in CORE/base-third from ~CLOUD.LIU/base-third:release/10.0 to release/10.0

* commit 'efb36c3fd7987c5e61c43cce75a6320071a404f8':
  REPORT-60245 fix: TongWeb启动失败
release/10.0
Cloud.Liu 3 years ago
parent
commit
64295b58c0
  1. 4
      build.third_step0.gradle

4
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
}

Loading…
Cancel
Save