MovieBookingSystem/build.gradle

44 lines
1 KiB
Groovy
Raw Normal View History

2024-02-06 03:55:21 +01:00
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/5.4/userguide/java_library_plugin.html
*/
plugins {
id 'java'
id 'eclipse'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
javafx {
version = "11.0.2"
modules = [ 'javafx.controls', 'javafx.base', 'javafx.fxml', 'javafx.graphics' ]
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
//sourceCompatibility = 11
//targetCompatibility = 21
repositories {
mavenCentral()
}
dependencies {
2024-02-06 04:04:34 +01:00
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.33'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.7.1'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.45.1.0'
2024-02-06 03:55:21 +01:00
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
mainClassName = 'gui.App'