1 Star 1 Fork 0

Dream_SoulFlame / AntiDropPlus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 884 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dream_SoulFlame 提交于 2022-04-27 04:45 . update
plugins {
id 'java'
}
group = 'dream'
version = '1.2.0'
repositories {
mavenCentral()
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT'
}
def targetJavaVersion = 8
java {
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
tasks.withType(JavaCompile).configureEach {
options.encoding("UTF-8")
}
processResources {
def props = [version: version]
inputs.properties props
filteringCharset 'UTF-8'
filesMatching('plugin.yml') {
expand props
}
}
Java
1
https://gitee.com/lengzi460/anti-drop-plus.git
git@gitee.com:lengzi460/anti-drop-plus.git
lengzi460
anti-drop-plus
AntiDropPlus
master

搜索帮助