mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
8797d88f22
replaces #2554
19 lines
385 B
Plaintext
19 lines
385 B
Plaintext
plugins {
|
|
id("com.google.devtools.ksp").version("1.8.20-1.0.10")
|
|
id("maven-publish")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
version = "1.2"
|
|
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.14.0")
|
|
implementation("com.squareup.moshi:moshi:1.14.0")
|
|
} |