Browse Source

Merge pull request #3776 in CORE/base-third from release/10.0 to bugfix/10.0

* commit '2053f44e3efaa556cc005f9ad1283b30d73a277f':
  REPORT-60245 fix: TongWeb启动失败
bugfix/10.0
superman 3 years ago
parent
commit
2f34f2d3bc
  1. 4
      build.third_step0.gradle

4
build.third_step0.gradle

@ -171,7 +171,9 @@ task unpack(type:Copy) {
task unpackEssential(type:Copy) { task unpackEssential(type:Copy) {
if (project.hasProperty("withCBB")) { if (project.hasProperty("withCBB")) {
for (File file : configurations.essential.files) { for (File file : configurations.essential.files) {
from zipTree(file) from (zipTree(file)) {
exclude "META-INF/versions/11/*"
}
} }
into classesDir into classesDir
} }

Loading…
Cancel
Save