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")
|
2023-04-28 21:54:36 +03:00
|
|
|
|
|
|
|
testImplementation(kotlin("test"))
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
2023-04-08 19:04:25 +03:00
|
|
|
}
|