Fixed some issues, and made things readible from File.

This commit is contained in:
2025-03-19 21:57:36 +01:00
parent 32c93fd99f
commit 5f192d1860
8 changed files with 277 additions and 25 deletions

View File

@@ -1,5 +1,6 @@
plugins {
id 'java'
id 'com.gradleup.shadow' version '9.0.0-beta7'
}
group = 'me.zacharias'
@@ -10,8 +11,16 @@ repositories {
}
dependencies {
implementation 'com.google.code.gson:gson:2.12.1'
implementation("org.jetbrains:annotations:23.1.0")
}
test {
useJUnitPlatform()
}
jar{
manifest {
attributes 'Main-class': 'me.zacharias.bank.Main'
}
}