Add InventoryManagementSystem app

This commit is contained in:
2025-11-03 17:32:20 +01:00
parent 8577d69eb1
commit f49be0c3d3
12 changed files with 1028 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
apply plugin: 'java'
apply plugin: 'application'
version = "1.0.0"
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
application {
mainClass = "inventory.Main"
}
jar {
archiveBaseName = 'simple-inventory'
manifest {
attributes(
'Main-Class': application.mainClass
)
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-params:${junitVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
}
test {
useJUnitPlatform()
}