mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-15 18:02:58 +08:00
22 lines
458 B
Kotlin
22 lines
458 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
|
|
project.version = "0.0.3"
|
|
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
testImplementation(platform(libs.testcontainers.bom))
|
|
testImplementation(libs.testcontainers)
|
|
testImplementation(libs.testcontainers.junit.jupiter)
|
|
testImplementation(project(":"))
|
|
|
|
implementation("io.minio:minio:8.5.17")
|
|
compileOnly(project(":"))
|
|
}
|
|
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|