initial commit

This commit is contained in:
2025-06-04 19:54:35 +03:30
commit e7e7706694
15 changed files with 540 additions and 0 deletions
+67
View File
@@ -0,0 +1,67 @@
plugins {
id 'java'
id 'application'
id 'org.javamodularity.moduleplugin' version '1.8.12'
id 'org.openjfx.javafxplugin' version '0.0.13'
id 'org.beryx.jlink' version '2.25.0'
}
group 'org.to'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext {
junitVersion = '5.10.2'
}
sourceCompatibility = '23'
targetCompatibility = '23'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
application {
mainModule = 'org.to.telegramfinalproject'
mainClass = 'org.to.telegramfinalproject.HelloApplication'
}
javafx {
version = '17.0.6'
modules = ['javafx.controls', 'javafx.fxml', 'javafx.web', 'javafx.swing' , 'javafx.media']
}
dependencies {
// JavaFX UI Libraries
implementation 'org.controlsfx:controlsfx:11.2.1'
implementation('com.dlsc.formsfx:formsfx-core:11.6.0') {
exclude group: 'org.openjfx'
}
implementation('net.synedra:validatorfx:0.5.0') {
exclude group: 'org.openjfx'
}
implementation 'org.kordamp.ikonli:ikonli-javafx:12.3.1'
implementation 'org.kordamp.bootstrapfx:bootstrapfx-core:0.4.0'
implementation('eu.hansolo:tilesfx:21.0.3') {
exclude group: 'org.openjfx'
}
test {
useJUnitPlatform()
}
jlink {
imageZip = project.file("${buildDir}/distributions/app-${javafx.platform.classifier}.zip")
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
launcher {
name = 'app'
}
}
jlinkZip {
group = 'distribution'
}
}