1 Star 0 Fork 0

BountyHunter/Organism

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle.kts 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
KunSs 提交于 2022-02-16 15:12 . 1
plugins {
`java-library`
`maven-publish`
id("io.izzel.taboolib") version "1.34"
id("org.jetbrains.kotlin.jvm") version "1.5.10"
}
taboolib {
install("common")
install("common-5")
install("module-ui")
install("module-nms-util")
install("module-nms")
install("module-effect")
install("module-lang")
install("module-kether")
install("module-configuration")
install("platform-bukkit")
classifier = null
version = "6.0.7-26"
}
repositories {
mavenCentral()
}
dependencies {
compileOnly("ink.ptms:nms-all:1.0.0")
compileOnly("ink.ptms.core:v11800:11800-minimize:api")
compileOnly("ink.ptms.core:v11800:11800-minimize:mapped")
compileOnly(kotlin("stdlib"))
compileOnly(fileTree("libs"))
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType<Jar> {
destinationDir = file("F:/Server/Spigot 1.12.2 - 赏金测试/plugins")
}
publishing {
repositories {
maven {
url = uri("https://repo.tabooproject.org/repository/releases")
credentials {
username = project.findProperty("taboolibUsername").toString()
password = project.findProperty("taboolibPassword").toString()
}
authentication {
create<BasicAuthentication>("basic")
}
}
}
publications {
create<MavenPublication>("library") {
from(components["java"])
groupId = project.group.toString()
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bounty-hunter-sever/organism.git
[email protected]:bounty-hunter-sever/organism.git
bounty-hunter-sever
organism
Organism
master

搜索帮助