Own-Programming-Language-Tu.../modules/canvasfx/build.gradle

24 lines
498 B
Groovy
Raw Normal View History

2023-08-28 15:55:04 +03:00
plugins {
id 'java-library'
id 'org.openjfx.javafxplugin' version '0.0.14'
id 'com.github.johnrengelman.shadow' version '8.1.1'
2023-08-28 15:55:04 +03:00
}
group = 'com.annimon.module'
2023-12-15 22:18:29 +02:00
version = '1.0.0'
2023-08-28 15:55:04 +03:00
javafx {
version = "17"
modules = [ 'javafx.controls', 'javafx.swing' ]
}
dependencies {
compileOnlyApi project(":ownlang-core")
2023-08-28 15:55:04 +03:00
testImplementation platform("org.junit:junit-bom:${versions.junit}")
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}