Browse Source

DEC-17833 fix: CBB独立发布 third打包脚本修改 withCBB写反了

final/10.0
Cloud.Liu 3 years ago
parent
commit
d655f39e09
  1. 5
      build.third_step0.gradle

5
build.third_step0.gradle

@ -99,7 +99,7 @@ publishing {
third_build(MavenPublication) {
groupId "com.fr.third"
artifactId project.hasProperty("withCBB") ? "fine-third-without-cbb" : "fine-third"
artifactId project.hasProperty("withCBB") ? "fine-third" : "fine-third-without-cbb"
version maven_version_build
ext.repo = 'snapshot'
from components.java
@ -170,13 +170,10 @@ task unpack(type:Copy) {
// essential依赖等级的jar全部解压到classes下
task unpackEssential(type:Copy) {
if (project.hasProperty("withCBB")) {
println "withCBB"
for (File file : configurations.essential.files) {
from zipTree(file)
}
into classesDir
} else {
println "withoutCBB"
}
}

Loading…
Cancel
Save