first commit

This commit is contained in:
2025-02-02 21:34:39 +01:00
commit 94ff96e056
11 changed files with 1962 additions and 0 deletions

25
build.gradle Normal file
View File

@@ -0,0 +1,25 @@
plugins {
id 'java'
id 'com.gradleup.shadow' version '9.0.0-beta7'
}
group = 'me.zacharias'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation("org.json:json:20230618")
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Main-Class': 'me.zacharias.star.map.Main'
}
}