92 lines
4.0 KiB
Groovy
92 lines
4.0 KiB
Groovy
// 网约车服务:仅小巴车、出租车渠道用
|
|
project.dependencies {
|
|
if (Boolean.valueOf(USE_MAVEN_PACKAGE)) {
|
|
fPadLenovoImplementation(rootProject.ext.dependencies.mogoochnoop) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// Bus司机端
|
|
fPadLenovoOchBusImplementation(rootProject.ext.dependencies.mogoochbus) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// Bus乘客端
|
|
fPadLenovoOchBusPassengerImplementation(rootProject.ext.dependencies.mogoochbus) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// taxi司机端
|
|
fPadLenovoOchTaxiImplementation(rootProject.ext.dependencies.mogoochtaxi) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// taxi乘客端
|
|
fPadLenovoOchTaxiPassengerImplementation(rootProject.ext.dependencies.mogoochtaxi) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
} else {
|
|
fPadLenovoImplementation (project(':OCH:mogo-och-noop')) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// Bus司机端
|
|
fPadLenovoOchBusImplementation (project(':OCH:mogo-och-bus')) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// Bus乘客端
|
|
fPadLenovoOchBusPassengerImplementation(rootProject.ext.dependencies.mogoochbus) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// taxi司机端
|
|
fPadLenovoOchTaxiImplementation (project(':OCH:mogo-och-taxi')) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
// taxi乘客端
|
|
fPadLenovoOchTaxiPassengerImplementation(rootProject.ext.dependencies.mogoochtaxi) {
|
|
exclude group: 'com.mogo.commons' //by group
|
|
exclude group: 'com.mogo.module' //by group
|
|
exclude group: 'com.mogo.map' //by group
|
|
exclude group: 'com.mogo.eagle.core' //by group
|
|
exclude group: 'com.mogo.eagle.core.function' //by group
|
|
}
|
|
|
|
}
|
|
}
|