1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-09 05:40:47 +02:00

Update to Gradle 7 (#3051)

This commit is contained in:
Callum Seabrook
2021-08-20 18:16:39 +01:00
committed by GitHub
parent b232cb94b4
commit ba522597a8
25 changed files with 308 additions and 263 deletions

View File

@@ -1,5 +1,6 @@
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'java'
}
repositories {
@@ -8,7 +9,7 @@ repositories {
}
dependencies {
compile project(':common')
implementation project(':common')
compileOnly project(':common:loader-utils')
compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
@@ -18,14 +19,14 @@ dependencies {
exclude(module: 'adventure-nbt')
}
compileOnly 'me.lucko:commodore:1.9'
compileOnly('net.milkbowl.vault:VaultAPI:1.6') {
compileOnly('net.milkbowl.vault:VaultAPI:1.7') {
exclude(module: 'bukkit')
}
compileOnly 'lilypad.client.connect:api:0.0.1-SNAPSHOT'
}
shadowJar {
archiveName = 'luckperms-bukkit.jarinjar'
archiveFileName = 'luckperms-bukkit.jarinjar'
dependencies {
include(dependency('me.lucko.luckperms:.*'))
@@ -52,4 +53,4 @@ shadowJar {
artifacts {
archives shadowJar
}
}