Browse Source

REPORT-60245 fix: TongWeb启动失败

final/11.0
Cloud.Liu 3 years ago
parent
commit
9387087483
  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