Browse Source

Pull request #1915: 无JIRA任务 feat: CBB增加分支

Merge in CORE/base-third from ~CLOUD.LIU/base-third:final/10.0 to final/10.0

* commit 'e0c248297a46a5acfe9130495c87198caf6a41f7':
  无JIRA任务 feat: CBB增加分支
final/10.0
Kara 4 years ago
parent
commit
eeb392d30f
  1. 17
      build.third_step0.gradle

17
build.third_step0.gradle

@ -71,8 +71,21 @@ configurations {
essential
}
// third的feature对应essential和cbb的releasemaster
String essentialBranch = branchNameUpperCase == 'FEATURE' ? 'RELEASE' : 'MASTER'
// CBB的对应关系
String essentialBranch
switch (branchNameUpperCase) {
case "FEATURE":
case "RESEARCH":
essentialBranch = "FEATURE"
break
case "RELEASE":
case "BUGFIX":
essentialBranch = "RELEASE"
break
default:
essentialBranch = "MASTER"
}
dependencies {
essential "com.fr.essential:fine-essential:1.0-${essentialBranch}-SNAPSHOT"
essential "com.fr.cbb:fine-scheduler:1.0-${essentialBranch}-SNAPSHOT"

Loading…
Cancel
Save