1
0

Finish Java Kompendium book

This commit is contained in:
2025-12-07 12:22:07 +01:00
parent 5eded28b16
commit c95abc31d6
30 changed files with 1400 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
plugins {
id 'java-library'
}
repositories {
mavenCentral()
}
dependencies {
// Use JUnit Jupiter for testing.
testImplementation libs.junit.jupiter
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// This dependency is exported to consumers, that is to say found on their compile classpath.
// api libs.commons.math3
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
// implementation libs.guava
}
tasks.named('test') {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}