1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 09:38:08 +03:00
Files
android_cast/desktop/session-studio/build.gradle
Anton Afanasyeu 6d02a9ee82 snap
Signed-off-by: Anton Afanasyeu <a.afanasieff@gmail.com>
2026-05-18 18:26:28 +02:00

24 lines
375 B
Groovy

plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
javafx {
version = '21'
modules = ['javafx.controls']
}
application {
mainClass = 'com.foxx.androidcast.studio.SessionStudioApp'
}
dependencies {
implementation 'org.json:json:20240303'
}