mirror of
git://f0xx.org/ac/ac-session-studio
synced 2026-07-29 02:58:43 +03:00
- build.gradle: add repositories { mavenCentral() } (fixes org.json resolve error)
- gradle.properties: pin org.gradle.java.home to openjdk-bin-21 (Gradle 8.9 unsupported on Java 25)
Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
412 B
Groovy
28 lines
412 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'org.openjfx.javafxplugin' version '0.1.0'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
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'
|
|
}
|