Files
Bankapp/build.gradle
Zacharias 86f67b07c9 Added a luancher file
Chaged the jvm entry point to the launcher
added some slight redundancy in case of missing folders
2025-04-24 09:18:20 +02:00

27 lines
457 B
Groovy

plugins {
id 'java'
id 'com.gradleup.shadow' version '9.0.0-beta7'
}
group = 'me.zacharias'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.code.gson:gson:2.12.1'
implementation("org.jetbrains:annotations:23.1.0")
implementation 'org.json:json:20250107'
}
test {
useJUnitPlatform()
}
jar{
manifest {
attributes 'Main-class': 'me.zacharias.bank.Launcher'
}
}