mirror of
https://github.com/tommyskeff/futur4j.git
synced 2026-01-17 23:16:01 +00:00
24 lines
581 B
Kotlin
24 lines
581 B
Kotlin
plugins {
|
|
id("java")
|
|
id("com.github.johnrengelman.shadow") version "7.1.2"
|
|
}
|
|
|
|
group = "dev.tommyjs"
|
|
version = "2.0.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains:annotations:24.1.0")
|
|
compileOnly(project(mapOf("path" to ":futur-api")))
|
|
implementation("io.projectreactor:reactor-core:3.6.0")
|
|
implementation(project(mapOf("path" to ":futur-reactive-streams")))
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |