Initial commit

This commit is contained in:
Dana123098
2025-10-16 13:27:29 +02:00
commit 03f4fc8a9e
5 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'
}
}