Initial commit

This commit is contained in:
Nela-cat
2025-10-16 14:08:58 +02:00
commit a36cf1b670
6 changed files with 45 additions and 0 deletions

16
build.gradle Normal file
View File

@@ -0,0 +1,16 @@
plugins {
id 'java'
}
group = 'com.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
jar {
manifest {
attributes 'Main-Class': 'com.example.demo.DemoApplication'
}
}