snark/snark-storage-driver/build.gradle.kts

23 lines
509 B
Plaintext
Raw Normal View History

2023-04-08 19:04:25 +03:00
plugins {
id("space.kscience.gradle.jvm")
`maven-publish`
}
val coroutinesVersion = space.kscience.gradle.KScienceVersions.coroutinesVersion
val awsSdkVersion = "0.+"
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
// s3 Driver dependency
2023-04-15 00:00:40 +03:00
implementation("aws.sdk.kotlin:s3:$awsSdkVersion")
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
}
tasks.test {
useJUnitPlatform()
2023-04-08 19:04:25 +03:00
}