Files
termora/plugins/oss/build.gradle.kts
dependabot[bot] de7a7c93b8 chore(deps): bump org.glassfish.jaxb:jaxb-runtime from 2.3.3 to 4.0.6
Bumps org.glassfish.jaxb:jaxb-runtime from 2.3.3 to 4.0.6.

---
updated-dependencies:
- dependency-name: org.glassfish.jaxb:jaxb-runtime
  dependency-version: 4.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-24 02:18:03 +00:00

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.3")
implementation("javax.xml.bind:jaxb-api:2.3.1")
implementation("javax.activation:activation:1.1.1")
implementation("org.glassfish.jaxb:jaxb-runtime:4.0.6")
compileOnly(project(":"))
}
apply(from = "$rootDir/plugins/common.gradle.kts")