mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-15 18:02:58 +08:00
Bumps [io.minio:minio](https://github.com/minio/minio-java) from 8.5.17 to 8.6.0. - [Release notes](https://github.com/minio/minio-java/releases) - [Commits](https://github.com/minio/minio-java/compare/8.5.17...8.6.0) --- updated-dependencies: - dependency-name: io.minio:minio dependency-version: 8.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
457 B
Kotlin
22 lines
457 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
|
|
project.version = "0.0.6"
|
|
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
testImplementation(platform(libs.testcontainers.bom))
|
|
testImplementation(libs.testcontainers)
|
|
testImplementation(libs.testcontainers.junit.jupiter)
|
|
testImplementation(project(":"))
|
|
|
|
implementation("io.minio:minio:8.6.0")
|
|
compileOnly(project(":"))
|
|
}
|
|
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|