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

23 lines
732 B
Groovy
Raw Normal View History

2023-08-26 15:59:36 +03:00
plugins {
id 'java-library'
}
group = 'com.annimon'
version = '2.0-SNAPSHOT'
dependencies {
api project(':ownlang-core')
2023-08-26 15:59:36 +03:00
testImplementation project(':modules:main')
testImplementation platform("org.junit:junit-bom:${versions.junit}")
testImplementation "org.junit.jupiter:junit-jupiter-params:${versions.junit}"
2023-08-26 15:59:36 +03:00
testImplementation 'org.junit.jupiter:junit-jupiter'
2023-09-11 19:15:01 +03:00
testImplementation("org.assertj:assertj-core:${versions.assertj}")
testImplementation "org.openjdk.jmh:jmh-core:${versions.jmh}"
testImplementation "org.openjdk.jmh:jmh-generator-annprocess:${versions.jmh}"
2023-08-30 18:21:58 +03:00
testAnnotationProcessor "org.openjdk.jmh:jmh-generator-annprocess:${versions.jmh}"
2023-08-26 15:59:36 +03:00
}
test {
useJUnitPlatform()
}