From df9c94ca378153299decf63e2b7a7fe20d60fc71 Mon Sep 17 00:00:00 2001 From: Speiger Date: Fri, 31 Jul 2026 18:57:05 +0200 Subject: [PATCH] gradle update --- build.gradle | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index de6bf97..e8b72fe 100644 --- a/build.gradle +++ b/build.gradle @@ -23,23 +23,29 @@ sourceSets { java {} } graphics { + compileClasspath += sourceSets.math.output + runtimeClasspath += sourceSets.math.output + java {} + } + gui { + compileClasspath += sourceSets.math.output + sourceSets.graphics.output + runtimeClasspath += sourceSets.math.output + sourceSets.graphics.output java {} } main { compileClasspath += sourceSets.math.output runtimeClasspath += sourceSets.math.output } - graphics { - compileClasspath += sourceSets.math.output - runtimeClasspath += sourceSets.math.output - java {} - } + } configurations { graphics.extendsFrom implementation graphics.extendsFrom runtime graphics.extendsFrom mathRuntime + + gui.extendsFrom mathRuntime + gui.extendsFrom graphicsRuntime implementation.extendsFrom mathRuntime }