Browse Source

Merge pull request #3779 in CORE/base-third from feature/10.0 to research/10.0

* commit '9e4493eac0af94aa9d4b786df6e716025e7ba305':
  REPORT-60245 fix: TongWeb启动失败
research/10.0
superman 3 years ago
parent
commit
3454c8c6a3
  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