mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
24 lines
507 B
Plaintext
24 lines
507 B
Plaintext
plugins {
|
|
id("com.google.devtools.ksp").version("1.6.10-1.0.2")
|
|
id("maven-publish")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
version = "1.1"
|
|
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
ksp("com.squareup.moshi:moshi-kotlin-codegen:1.13.0")
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.10")
|
|
|
|
implementation("com.squareup.moshi:moshi:1.13.0")
|
|
implementation("com.squareup.okhttp3:okhttp:4.9.3")
|
|
}
|
|
|