mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-16 02:12:58 +08:00
Bumps [com.aliyun.oss:aliyun-sdk-oss](https://github.com/aliyun/aliyun-oss-java-sdk) from 3.18.3 to 3.18.4. - [Release notes](https://github.com/aliyun/aliyun-oss-java-sdk/releases) - [Commits](https://github.com/aliyun/aliyun-oss-java-sdk/commits) --- updated-dependencies: - dependency-name: com.aliyun.oss:aliyun-sdk-oss dependency-version: 3.18.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
441 B
Kotlin
18 lines
441 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
project.version = "0.0.3"
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
implementation("com.aliyun.oss:aliyun-sdk-oss:3.18.4")
|
|
implementation("javax.xml.bind:jaxb-api:2.3.1")
|
|
implementation("javax.activation:activation:1.1.1")
|
|
implementation("org.glassfish.jaxb:jaxb-runtime:2.3.3")
|
|
compileOnly(project(":"))
|
|
}
|
|
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|