mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-08 20:09:59 +01:00
75d8f00400
This fixes an issue that prevented LuckPerms from loading on Java 16
33 lines
656 B
Groovy
33 lines
656 B
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow'
|
|
}
|
|
|
|
repositories {
|
|
maven { url 'https://papermc.io/repo/repository/maven-public/' }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
|
|
|
|
compile project(':api')
|
|
compile project(':common:loader-utils')
|
|
}
|
|
|
|
processResources {
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
expand 'pluginVersion': project.ext.fullVersion
|
|
include 'plugin.yml'
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
archiveName = "LuckPerms-Bukkit-${project.ext.fullVersion}.jar"
|
|
|
|
from {
|
|
project(':bukkit').tasks.shadowJar.archiveFile
|
|
}
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
} |