forked from Fate-Grand-Automata/FGA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
49 lines (40 loc) · 1.29 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
// https://developer.android.com/build/migrate-to-catalogs#migrate-dependencies
classpath(libs.android.tools.build.gradle)
classpath(libs.kotlin.gradle.plugin)
classpath(libs.hilt.android.gradle.plugin)
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
alias(libs.plugins.ben.manes.versions)
alias(libs.plugins.ksp) apply false
}
allprojects {
repositories {
google()
maven { url = uri("https://repo1.maven.org/maven2") }
maven { url = uri("https://jitpack.io") }
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
}
}
subprojects {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions {
freeCompilerArgs += "-opt-in=kotlin.time.ExperimentalTime"
// Set JVM target to 11
jvmTarget = "11"
}
}
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}