Initial commit

This commit is contained in:
SirYwell 2025-05-05 00:22:11 +02:00
commit 192146b99d
No known key found for this signature in database
84 changed files with 3258 additions and 0 deletions

30
build.gradle.kts Normal file
View file

@ -0,0 +1,30 @@
plugins {
id("java")
application
}
group = "edu.kit.kastel.logic"
version = "1.0-SNAPSHOT"
application {
mainModule = "edu.kit.kastel.vads.compiler"
mainClass = "edu.kit.kastel.vads.compiler.Main"
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.jspecify:jspecify:1.0.0")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
java {
toolchain.languageVersion = JavaLanguageVersion.of(24)
}
tasks.test {
useJUnitPlatform()
}