You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
Kotlin
65 lines
1.5 KiB
Kotlin
import tasks.ReportGenerateTask
|
|
|
|
plugins {
|
|
`java-library`
|
|
`maven-publish`
|
|
alias(libs.plugins.kotlin.jvm)
|
|
alias(libs.plugins.ksp)
|
|
}
|
|
|
|
group = "org.koitharu"
|
|
version = "1.0"
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
ksp {
|
|
arg("summaryOutputDir", "${projectDir}/.github")
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
compilerOptions {
|
|
freeCompilerArgs.addAll(
|
|
"-opt-in=kotlin.RequiresOptIn",
|
|
"-opt-in=kotlin.contracts.ExperimentalContracts",
|
|
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
"-opt-in=org.koitharu.kotatsu.parsers.InternalParsersApi",
|
|
)
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(8)
|
|
explicitApiWarning()
|
|
sourceSets["main"].kotlin.srcDirs("build/generated/ksp/main/kotlin")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("mavenJava") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.okhttp)
|
|
implementation(libs.okio)
|
|
implementation(libs.json)
|
|
implementation(libs.androidx.collection)
|
|
api(libs.jsoup)
|
|
|
|
ksp(project(":kotatsu-parsers-ksp"))
|
|
|
|
testImplementation(libs.junit.api)
|
|
testImplementation(libs.junit.engine)
|
|
testImplementation(libs.junit.params)
|
|
testRuntimeOnly(libs.junit.launcher)
|
|
testImplementation(libs.kotlinx.coroutines.test)
|
|
testImplementation(libs.quickjs)
|
|
}
|
|
|
|
tasks.register<ReportGenerateTask>("generateTestsReport")
|