mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-09 18:00:33 +08:00
121 lines
3.4 KiB
Plaintext
121 lines
3.4 KiB
Plaintext
import Versions.Publishing.bintray
|
|
import java.util.*
|
|
|
|
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")
|
|
|
|
version = Versions.Mirai.console
|
|
|
|
/*
|
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar>() {
|
|
manifest {
|
|
attributes["Main-Class"] = "net.mamoe.mirai.console.graphical.MiraiGraphicalLoader"
|
|
}
|
|
}
|
|
*/
|
|
|
|
val miraiConsoleGraphicalVersion: String by project.ext
|
|
version = miraiConsoleGraphicalVersion
|
|
|
|
description = "Console Graphical Version with plugin support for mirai"
|
|
bintray {
|
|
val keyProps = Properties()
|
|
val keyFile = file("../keys.properties")
|
|
if (keyFile.exists()) keyFile.inputStream().use { keyProps.load(it) }
|
|
if (keyFile.exists()) keyFile.inputStream().use { keyProps.load(it) }
|
|
|
|
user = keyProps.getProperty("bintrayUser")
|
|
key = keyProps.getProperty("bintrayKey")
|
|
setPublications("mavenJava")
|
|
setConfigurations("archives")
|
|
|
|
pkg.apply {
|
|
repo = "mirai"
|
|
name = "mirai-console-graphical"
|
|
setLicenses("AGPLv3")
|
|
publicDownloadNumbers = true
|
|
vcsUrl = "https://github.com/mamoe/mirai"
|
|
}
|
|
}
|
|
|
|
val kotlinVersion: String by rootProject.ext
|
|
val atomicFuVersion: String by rootProject.ext
|
|
val coroutinesVersion: String by rootProject.ext
|
|
val kotlinXIoVersion: String by rootProject.ext
|
|
val coroutinesIoVersion: String by rootProject.ext
|
|
|
|
val klockVersion: String by rootProject.ext
|
|
val ktorVersion: String by rootProject.ext
|
|
|
|
val serializationVersion: String by rootProject.ext
|
|
|
|
fun kotlinx(id: String, version: String) = "org.jetbrains.kotlinx:kotlinx-$id:$version"
|
|
|
|
fun ktor(id: String, version: String) = "io.ktor:ktor-$id:$version"
|
|
|
|
val miraiVersion: String by rootProject.ext
|
|
|
|
dependencies {
|
|
implementation("net.mamoe:mirai-core-jvm:$miraiVersion")
|
|
implementation("net.mamoe:mirai-core-qqandroid-jvm:$miraiVersion")
|
|
api(project(":mirai-console"))
|
|
|
|
api(group = "no.tornado", name = "tornadofx", version = "1.7.19")
|
|
api(group = "com.jfoenix", name = "jfoenix", version = "9.0.8")
|
|
api(group = "com.jfoenix", name = "jfoenix", version = "9.0.8")
|
|
|
|
testApi(group = "org.yaml", name = "snakeyaml", version = "1.25")
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
publishing {
|
|
/*
|
|
repositories {
|
|
maven {
|
|
// change to point to your repo, e.g. http://my.org/repo
|
|
url = uri("$buildDir/repo")
|
|
}
|
|
}*/
|
|
publications {
|
|
register("mavenJava", MavenPublication::class) {
|
|
from(components["java"])
|
|
|
|
groupId = rootProject.group.toString()
|
|
artifactId = "mirai-console-graphical"
|
|
version = miraiConsoleGraphicalVersion
|
|
|
|
pom.withXml {
|
|
val root = asNode()
|
|
root.appendNode("description", description)
|
|
root.appendNode("name", project.name)
|
|
root.appendNode("url", "https://github.com/mamoe/mirai")
|
|
root.children().last()
|
|
}
|
|
|
|
artifact(sourcesJar.get())
|
|
}
|
|
}
|
|
} |