mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
19 lines
362 B
Plaintext
19 lines
362 B
Plaintext
|
plugins {
|
||
|
id("maven-publish")
|
||
|
}
|
||
|
|
||
|
publishing {
|
||
|
publications {
|
||
|
create<MavenPublication>("maven") {
|
||
|
version = "1.2"
|
||
|
|
||
|
from(components["java"])
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":model"))
|
||
|
implementation("com.squareup.okhttp3:okhttp:4.9.3")
|
||
|
implementation("com.squareup.moshi:moshi:1.14.0")
|
||
|
}
|