... I have no excuse.. i forgot the MALAPITool's build.gradle....

This commit is contained in:
2025-05-28 20:24:08 +02:00
parent 603b72f2d3
commit a602d30901

23
MALAPITool/build.gradle Normal file
View File

@@ -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()
}