mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-15 18:02:58 +08:00
Bumps org.apache.commons:commons-pool2 from 2.13.0 to 2.13.1. --- updated-dependencies: - dependency-name: org.apache.commons:commons-pool2 dependency-version: 2.13.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
313 B
Kotlin
16 lines
313 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
project.version = "0.0.2"
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
compileOnly(project(":"))
|
|
implementation("org.apache.commons:commons-pool2:2.13.1")
|
|
testImplementation(project(":"))
|
|
}
|
|
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|