Files
daiyongkang 76f266645d Initial commit: 风影 OA 全栈源码(API/Web/Flutter/IM)
含 Phase 1.1 IM seq 排序、断线重连、多端已读同步与微信式语音转文字 UI。
排除 node_modules、构建产物、安装包与 .env 密钥。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-02 10:04:03 +00:00

28 lines
706 B
Groovy

allprojects {
repositories {
google()
mavenCentral()
maven { url "https://developer.huawei.com/repo/" }
maven { url "https://repos.vivo.com.cn/maven/repository/external-lib/" }
maven {
url "https://maven.columbus.heytapmobi.com/repository/releases/"
credentials {
username "nexus"
password "c0b08da17e3ec36c3870fed674a0bcb36abc2e23"
}
}
}
}
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}