1
0
mirror of git://f0xx.org/ac/ac-session-studio synced 2026-07-29 02:58:43 +03:00
This commit is contained in:
Anton Afanasyeu
2026-06-23 12:21:12 +02:00
commit 850c6cabe8
10 changed files with 1094 additions and 0 deletions

23
build.gradle Normal file
View File

@@ -0,0 +1,23 @@
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'
}