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