16 lines
228 B
Plaintext
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")
|
|
}
|