Own-Programming-Language-Tu.../modules/main/build.gradle

25 lines
614 B
Groovy
Raw Normal View History

2023-08-26 15:59:36 +03:00
plugins {
id 'java-library'
}
group = 'com.annimon.module'
version = '2.0-SNAPSHOT'
dependencies {
api project(":ownlang-core")
implementation "com.squareup.okhttp3:okhttp:${versions.okhttp}"
implementation ("io.socket:socket.io-client:${versions.socket}") {
2023-08-26 15:59:36 +03:00
exclude group: 'org.json', module: 'json'
}
implementation "org.json:json:${versions.json}"
implementation "org.yaml:snakeyaml:${versions.snakeyaml}"
2023-08-26 15:59:36 +03:00
testImplementation platform("org.junit:junit-bom:${versions.junit}")
2023-08-26 15:59:36 +03:00
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}