Browse Source

Merge pull request #3818 in CORE/base-third from persist/10.0 to persist/jsy

* commit '1b3100c6529b16f5b0836f39c0bb2c1f924aace0':
  REPORT-60245 fix: TongWeb启动失败
persist/jsy
superman 3 years ago
parent
commit
1bf5276f20
  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