31 lines
634 B
Groovy
31 lines
634 B
Groovy
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*
|
|
* This is a general purpose Gradle build.
|
|
* Learn more about Gradle by exploring our Samples at https://docs.gradle.org/8.14.3/samples
|
|
* This project uses @Incubating APIs which are subject to change.
|
|
*/
|
|
|
|
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
|
|
application {
|
|
mainClass = 'lodge.reservationsytem.TestReservations'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = ['src/java']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation( files('libs/com.google.code.gson:2.13.1') )
|
|
} |