|
|
|
@ -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" |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|