2020-08-20 10:02:28 +03:00
|
|
|
package ru.mipt.npm.gradle
|
2020-03-16 15:22:16 +03:00
|
|
|
|
|
|
|
import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
|
import org.gradle.api.Project
|
|
|
|
import org.gradle.kotlin.dsl.findByType
|
|
|
|
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
|
|
|
|
import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension
|
|
|
|
import org.jetbrains.kotlin.gradle.plugin.KotlinDependencyHandler
|
|
|
|
|
|
|
|
enum class FXModule(val artifact: String, vararg val dependencies: FXModule) {
|
|
|
|
BASE("javafx-base"),
|
|
|
|
GRAPHICS("javafx-graphics", BASE),
|
|
|
|
CONTROLS("javafx-controls", GRAPHICS, BASE),
|
|
|
|
FXML("javafx-fxml", BASE),
|
|
|
|
MEDIA("javafx-media", GRAPHICS, BASE),
|
|
|
|
SWING("javafx-swing", GRAPHICS, BASE),
|
|
|
|
WEB("javafx-web", CONTROLS, GRAPHICS, BASE)
|
|
|
|
}
|
|
|
|
|
|
|
|
enum class FXPlatform(val id: String) {
|
|
|
|
WINDOWS("win"),
|
|
|
|
LINUX("linux"),
|
|
|
|
MAC("mac")
|
|
|
|
}
|
|
|
|
|
|
|
|
val defaultPlatform: FXPlatform = when {
|
|
|
|
Os.isFamily(Os.FAMILY_WINDOWS) -> FXPlatform.WINDOWS
|
|
|
|
Os.isFamily(Os.FAMILY_MAC) -> FXPlatform.MAC
|
|
|
|
Os.isFamily(Os.FAMILY_UNIX) -> FXPlatform.LINUX
|
|
|
|
else -> error("Platform not recognized")
|
|
|
|
}
|
|
|
|
|
2020-07-05 14:39:35 +03:00
|
|
|
private fun KotlinDependencyHandler.addFXDependencies(
|
2020-03-16 15:22:16 +03:00
|
|
|
vararg modules: FXModule,
|
|
|
|
configuration: DependencyConfiguration,
|
|
|
|
version: String = "14",
|
|
|
|
platform: FXPlatform = defaultPlatform
|
|
|
|
) {
|
|
|
|
modules.flatMap { it.dependencies.toList() + it }.distinct().forEach {
|
|
|
|
val notation = "org.openjfx:${it.artifact}:$version:${platform.id}"
|
|
|
|
when (configuration) {
|
|
|
|
DependencyConfiguration.API -> api(notation)
|
|
|
|
DependencyConfiguration.IMPLEMENTATION -> implementation(notation)
|
|
|
|
DependencyConfiguration.COMPILE_ONLY -> compileOnly(notation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 19:57:27 +03:00
|
|
|
fun Project.useFx(
|
2020-03-16 15:22:16 +03:00
|
|
|
vararg modules: FXModule,
|
|
|
|
configuration: DependencyConfiguration = DependencyConfiguration.COMPILE_ONLY,
|
|
|
|
version: String = "14",
|
|
|
|
platform: FXPlatform = defaultPlatform
|
2020-05-04 19:57:27 +03:00
|
|
|
): Unit = afterEvaluate{
|
2020-03-16 15:22:16 +03:00
|
|
|
pluginManager.withPlugin("org.jetbrains.kotlin.multiplatform") {
|
|
|
|
extensions.findByType<KotlinMultiplatformExtension>()?.apply {
|
|
|
|
sourceSets.findByName("jvmMain")?.apply {
|
|
|
|
dependencies {
|
|
|
|
addFXDependencies(*modules, configuration = configuration, version = version, platform = platform)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pluginManager.withPlugin("org.jetbrains.kotlin.jvm") {
|
|
|
|
extensions.findByType<KotlinJvmProjectExtension>()?.apply {
|
|
|
|
sourceSets.findByName("main")?.apply {
|
|
|
|
dependencies {
|
|
|
|
addFXDependencies(*modules, configuration = configuration, version = version, platform = platform)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|