20 lines
435 B
Plaintext
20 lines
435 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "org.example"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
implementation("org.apache.logging.log4j:log4j-api:2.24.0")
|
|
implementation("org.apache.logging.log4j:log4j-core:2.24.0")
|
|
implementation("com.google.code.gson:gson:2.8.8")
|
|
}
|