mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
26 lines
No EOL
439 B
Groovy
26 lines
No EOL
439 B
Groovy
allprojects {
|
|
ext.kotlin_version = '1.9.24'
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
subprojects {
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
}
|
|
|
|
subprojects {
|
|
project.evaluationDependsOn(':app')
|
|
}
|
|
|
|
tasks.register("clean", Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
tasks.named('wrapper') {
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
} |