22 lines
424 B
Plaintext
22 lines
424 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "org.example"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
implementation("org.jfree:jfreechart:1.5.3")
|
|
implementation("org.jfree:jcommon:1.0.24")
|
|
// Add other dependencies if needed
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |