Own-Programming-Language-Tu.../ownlang-utils/build.gradle

19 lines
352 B
Groovy
Raw Normal View History

2023-08-26 15:59:36 +03:00
plugins {
id 'java-library'
}
group = 'com.annimon'
2023-12-15 22:18:29 +02:00
version = versions.project
2023-08-26 15:59:36 +03:00
dependencies {
api project(":ownlang-parser")
implementation "jline:jline:${versions.jline}"
2023-08-26 15:59:36 +03:00
testImplementation platform("org.junit:junit-bom:${versions.junit}")
2023-08-26 15:59:36 +03:00
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}