Own-Programming-Language-Tu.../modules/jdbc/build.gradle

18 lines
364 B
Groovy
Raw Permalink Normal View History

2024-03-03 14:32:04 +02:00
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'com.annimon.module'
version = '1.0.0'
dependencies {
compileOnlyApi project(":ownlang-core")
testImplementation platform("org.junit:junit-bom:${versions.junit}")
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}