plugins { id 'java-library' } group = 'com.annimon.module' version = '2.0-SNAPSHOT' dependencies { compileOnlyApi project(":ownlang-core") implementation "com.squareup.okhttp3:okhttp:${versions.okhttp}" implementation ("io.socket:socket.io-client:${versions.socket}") { exclude group: 'org.json', module: 'json' } 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() }