/* * Gradle 'init' task. * */ plugins { id 'application' id("org.openjfx.javafxplugin") version "0.1.0" } java { toolchain { languageVersion = JavaLanguageVersion.of(25) } } group = 'edu.addressbook' version = '1.0' repositories { // Use Maven Central for resolving dependencies. mavenCentral() } javafx { version = "25.0.1" modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.web' ] } dependencies { implementation("org.slf4j:slf4j-api:2.0.17") implementation("ch.qos.logback:logback-classic:1.5.26") implementation("org.aspectj:aspectjrt:1.9.25") implementation 'org.openjfx:javafx-base:25.0.1' implementation 'org.openjfx:javafx-fxml:25.0.1' implementation 'org.openjfx:javafx-controls:25.0.1' implementation 'org.openjfx:javafx-graphics:25.0.1' implementation 'org.openjfx:javafx-web:25.0.1' implementation project(':edu.addressbook') } // Apply a specific Java toolchain to ease working on different environments. java { toolchain { languageVersion = JavaLanguageVersion.of(25) } } application { // Define the main class for the application. mainClass = 'edu.addressbook.view.ApplicationView' }