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

25 lines
551 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:3.8.1'
implementation ('io.socket:socket.io-client:1.0.2') {
exclude group: 'org.json', module: 'json'
}
implementation 'org.json:json:20230227'
implementation 'org.yaml:snakeyaml:1.20'
testImplementation platform('org.junit:junit-bom:5.9.2')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}