plugins { id 'java-library' } group = 'com.annimon.module' version = versions.project dependencies { compileOnlyApi project(":ownlang-core") implementation "com.squareup.okhttp3:okhttp:${versions.okhttp}" implementation "org.json:json:${versions.json}" implementation "org.yaml:snakeyaml:${versions.snakeyaml}" testImplementation platform("org.junit:junit-bom:${versions.junit}") testImplementation 'org.junit.jupiter:junit-jupiter' } test { useJUnitPlatform() }