Files
inventorym/Api/build.gradle

34 lines
687 B
Groovy
Raw Normal View History

2025-10-26 22:43:30 -04:00
/*
* 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 {
2025-10-28 11:43:15 -04:00
languageVersion = JavaLanguageVersion.of(25)
2025-10-26 22:43:30 -04:00
}
}
application {
// Define the main class for the application.
mainClass = 'edu.inventorym.Api'
}
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
dependencies {
2025-10-28 11:43:15 -04:00
implementation 'jakarta.json.bind:jakarta.json.bind-api:3.0.1'
implementation project(':Model')
2025-10-26 22:43:30 -04:00
}