-
Notifications
You must be signed in to change notification settings - Fork 10k
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
46 lines (41 loc) · 1.25 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
46 lines (41 loc) · 1.25 KB
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
plugins {
`kotlin-dsl`
// kotlin("jvm") version "2.1.0"
}
gradlePlugin {
plugins {
register("lottiePreParser") {
id = "org.telegram.lottie-meta"
implementationClass = "org.telegram.lottie.LottieMetaPlugin"
}
register("testGenerator") {
id = "test-generator"
implementationClass = "com.example.TestGeneratorPlugin"
}
}
}
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
/*
val checkEmojiKeyboard by tasks.registering(GenerateSchemeTask::class) {
}
*/
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
compilerOptions {
languageVersion.set(org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9)
apiVersion.set(org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9)
}
incremental = false
}
dependencies {
implementation(gradleApi())
implementation("com.android.tools.build:gradle:8.10.1")
implementation("com.squareup.moshi:moshi:1.15.0")
implementation("com.squareup.moshi:moshi-kotlin:1.15.0")
implementation("com.github.javaparser:javaparser-core:3.25.4")
implementation("com.squareup:kotlinpoet:1.15.0")
implementation("com.google.code.gson:gson:2.11.0")
}