mirror of
https://github.com/fankes/moshi.git
synced 2025-10-18 23:49:21 +08:00
12 lines
212 B
Plaintext
12 lines
212 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
kotlin("kapt")
|
|
}
|
|
|
|
dependencies {
|
|
kapt(project(":moshi-kotlin-codegen"))
|
|
compileOnly(libs.jsr305)
|
|
implementation(project(":moshi"))
|
|
implementation(project(":moshi-adapters"))
|
|
}
|