stacking
This commit is contained in:
31
build.gradle
Normal file
31
build.gradle
Normal file
@@ -0,0 +1,31 @@
|
||||
plugins {
|
||||
id 'application'
|
||||
id 'org.openjfx.javafxplugin' version '0.1.0'
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
maven {
|
||||
url = uri(System.getenv("JLIBGHOSTTY_MAVEN_REPO"))
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'io.github.wasabithumb:jtoml:1.5.2'
|
||||
implementation 'dev.jlibghostty:jlibghostty:0.1.0-SNAPSHOT'
|
||||
implementation 'org.jetbrains.pty4j:pty4j:0.13.11'
|
||||
}
|
||||
|
||||
javafx {
|
||||
version = '22'
|
||||
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = 'com.gregor.jprototerm.Main'
|
||||
}
|
||||
|
||||
run {
|
||||
jvmArgs += ['--enable-native-access=ALL-UNNAMED']
|
||||
}
|
||||
Reference in New Issue
Block a user