mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 02:20:14 +08:00
65 lines
1.8 KiB
Plaintext
65 lines
1.8 KiB
Plaintext
plugins {
|
|
id("kotlinx-serialization")
|
|
id("org.openjfx.javafxplugin") version "0.0.8"
|
|
id("kotlin")
|
|
id("java")
|
|
id("com.jfrog.bintray")
|
|
`maven-publish`
|
|
}
|
|
|
|
javafx {
|
|
version = "13.0.2"
|
|
modules = listOf("javafx.controls")
|
|
//mainClassName = "Application"
|
|
}
|
|
|
|
apply(plugin = "com.github.johnrengelman.shadow")
|
|
|
|
|
|
/*
|
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar>() {
|
|
manifest {
|
|
attributes["Main-Class"] = "net.mamoe.mirai.console.graphical.MiraiGraphicalLoader"
|
|
}
|
|
}
|
|
*/
|
|
|
|
version = Versions.Mirai.consoleGraphical
|
|
|
|
description = "Graphical frontend for mirai-console"
|
|
|
|
dependencies {
|
|
compileOnly("net.mamoe:mirai-core:${Versions.Mirai.core}")
|
|
implementation(project(":mirai-console"))
|
|
|
|
api(group = "no.tornado", name = "tornadofx", version = "1.7.19")
|
|
api(group = "com.jfoenix", name = "jfoenix", version = "9.0.8")
|
|
|
|
testApi(project(":mirai-console"))
|
|
testApi(kotlinx("coroutines-core", Versions.Kotlin.coroutines))
|
|
testApi(group = "org.yaml", name = "snakeyaml", version = "1.25")
|
|
testApi("net.mamoe:mirai-core:${Versions.Mirai.core}")
|
|
testApi("net.mamoe:mirai-core-qqandroid:${Versions.Mirai.core}")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
all {
|
|
|
|
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
|
|
languageSettings.useExperimentalAnnotation("kotlin.OptIn")
|
|
languageSettings.progressiveMode = true
|
|
languageSettings.useExperimentalAnnotation("net.mamoe.mirai.utils.MiraiInternalAPI")
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
@Suppress("DEPRECATION")
|
|
val sourcesJar by tasks.registering(Jar::class) {
|
|
classifier = "sources"
|
|
from(sourceSets.main.get().allSource)
|
|
} |