|
|
|
@ -2,6 +2,7 @@ plugins {
|
|
|
|
id 'java-library'
|
|
|
|
id 'java-library'
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
|
|
id 'com.google.devtools.ksp'
|
|
|
|
id 'com.google.devtools.ksp'
|
|
|
|
|
|
|
|
id 'maven-publish'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
group = 'org.koitharu'
|
|
|
|
group = 'org.koitharu'
|
|
|
|
@ -35,6 +36,16 @@ kotlin {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
|
|
|
|
publications {
|
|
|
|
|
|
|
|
mavenJava(MavenPublication) {
|
|
|
|
|
|
|
|
from components.java
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
|
|
|
|
|