SimpleFileSyncServer/build.gradle.kts
2023-05-19 14:42:47 -04:00

16 lines
228 B
Plaintext

plugins {
id("java")
}
group = "tech.nevets"
version = "1.0"
repositories {
mavenCentral()
}
dependencies {
implementation("org.nanohttpd:nanohttpd:2.3.1")
implementation("com.google.code.gson:gson:2.10.1")
}