From c95abc31d62e296db4f1b537e3de440dd40defd1 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sun, 7 Dec 2025 12:22:07 +0100 Subject: Finish Java Kompendium book --- Java-Kompendium/kap26/build.gradle | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Java-Kompendium/kap26/build.gradle (limited to 'Java-Kompendium/kap26/build.gradle') diff --git a/Java-Kompendium/kap26/build.gradle b/Java-Kompendium/kap26/build.gradle new file mode 100644 index 0000000..51c5db2 --- /dev/null +++ b/Java-Kompendium/kap26/build.gradle @@ -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() +} -- cgit v1.2.3