This commit is contained in:
2025-10-26 22:43:30 -04:00
parent 8cf15672d6
commit 1ee497dd99
50 changed files with 1243 additions and 0 deletions

41
App/build.gradle Normal file
View File

@@ -0,0 +1,41 @@
/*
* This file was generated by the Gradle 'init' task.
*
*/
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
id 'java'
id 'application'
}
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
languageVersion = JavaLanguageVersion.of(24)
}
}
application {
// Define the main class for the application.
mainClass = 'edu.inventorym.RpcDeserializer'
}
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
dependencies {
implementation 'io.helidon:helidon:4.3.1'
implementation 'io.helidon.common:helidon-common:4.3.1'
implementation 'io.helidon.media:helidon-media-jsonb:3.2.12'
implementation 'io.helidon.media.jsonb:helidon-media-jsonb-common:1.4.16'
implementation 'io.helidon.media.jsonb:helidon-media-jsonb-server:1.4.16'
implementation 'jakarta.json.bind:jakarta.json.bind-api:3.0.1'
implementation 'io.helidon.webserver:helidon-webserver:4.3.1'
}