From a602d30901fb427125144ab044d85a14b5a5975f Mon Sep 17 00:00:00 2001 From: Zacharias Date: Wed, 28 May 2025 20:24:08 +0200 Subject: [PATCH] ... I have no excuse.. i forgot the MALAPITool's build.gradle.... --- MALAPITool/build.gradle | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 MALAPITool/build.gradle diff --git a/MALAPITool/build.gradle b/MALAPITool/build.gradle new file mode 100644 index 0000000..d93b3a7 --- /dev/null +++ b/MALAPITool/build.gradle @@ -0,0 +1,23 @@ +plugins { + id 'java' +} + +group = 'me.zacharias' +version = '1.0-SNAPSHOT' + +repositories { + mavenCentral() +} + +dependencies { + testImplementation platform('org.junit:junit-bom:5.10.0') + testImplementation 'org.junit.jupiter:junit-jupiter' + + implementation project(":Core") + + implementation 'io.github.classgraph:classgraph:4.8.158' +} + +test { + useJUnitPlatform() +} \ No newline at end of file