Browse Source

Merge pull request #3771 in CORE/base-third from final/11.0 to release/11.0

* commit '2580d65b9c46210239958e37573dc53546570e2b':
  REPORT-60245 fix: TongWeb启动失败
bugfix/KERNEL-11409-jackson
superman 3 years ago
parent
commit
20d0aecf7f
  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