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

20 lines
480 B
Groovy

plugins {
id 'java-library'
}
group = 'com.annimon'
version = '2.0-SNAPSHOT'
dependencies {
api project(":ownlang-core")
testImplementation platform('org.junit:junit-bom:5.9.2')
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.openjdk.jmh:jmh-core:1.37'
testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:1.37'
}
test {
useJUnitPlatform()
}