mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-01-05 23:08:23 +00:00
bruh
This commit is contained in:
parent
b9fb46eeeb
commit
23717f4a9b
3 changed files with 10 additions and 12 deletions
|
@ -3,6 +3,10 @@ dependencies {
|
||||||
exclude group: "org.bukkit", module: "bukkit"
|
exclude group: "org.bukkit", module: "bukkit"
|
||||||
}
|
}
|
||||||
compileOnly 'net.luckperms:api:5.0'
|
compileOnly 'net.luckperms:api:5.0'
|
||||||
|
compileOnly('me.totalfreedom:TotalFreedomMod:6.0') {
|
||||||
|
exclude group: "org.bstats", module: "bstats-bukkit"
|
||||||
|
exclude group: "me.rayzr522", module: "jsonmessage"
|
||||||
|
}
|
||||||
|
|
||||||
api 'io.papermc:paperlib:1.0.6'
|
api 'io.papermc:paperlib:1.0.6'
|
||||||
|
|
||||||
|
|
13
build.gradle
13
build.gradle
|
@ -7,7 +7,7 @@ buildscript {
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.ajoberstar.grgit' version '4.1.0'
|
id 'org.ajoberstar.grgit' version '4.1.0'
|
||||||
id 'net.kyori.indra' version "$indraVersion" apply false
|
id 'net.kyori.indra' version "$indraVersion" apply false
|
||||||
id 'net.kyori.indra.checkstyle' version "$indraVersion" apply false
|
//id 'net.kyori.indra.checkstyle' version "$indraVersion" apply false
|
||||||
id 'net.kyori.indra.publishing' version "$indraVersion" apply false
|
id 'net.kyori.indra.publishing' version "$indraVersion" apply false
|
||||||
id 'com.github.johnrengelman.shadow' version '6.1.0' apply false
|
id 'com.github.johnrengelman.shadow' version '6.1.0' apply false
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ ext {
|
||||||
|
|
||||||
fullVersion = "${version}-${GIT_COMMIT}".replace("-SNAPSHOT", "-dev+${GIT_DEPTH}")
|
fullVersion = "${version}-${GIT_COMMIT}".replace("-SNAPSHOT", "-dev+${GIT_DEPTH}")
|
||||||
|
|
||||||
checkstyleVersion = '8.36.2'
|
//checkstyleVersion = '8.36.2'
|
||||||
spigotVersion = '1.16.4-R0.1-SNAPSHOT'
|
spigotVersion = '1.16.4-R0.1-SNAPSHOT'
|
||||||
junit5Version = '5.7.0'
|
junit5Version = '5.7.0'
|
||||||
mockitoVersion = '3.2.0'
|
mockitoVersion = '3.2.0'
|
||||||
|
@ -49,7 +49,7 @@ ext {
|
||||||
subprojects {
|
subprojects {
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
apply plugin: 'net.kyori.indra'
|
apply plugin: 'net.kyori.indra'
|
||||||
apply plugin: 'net.kyori.indra.checkstyle'
|
//apply plugin: 'net.kyori.indra.checkstyle'
|
||||||
apply plugin: 'net.kyori.indra.publishing'
|
apply plugin: 'net.kyori.indra.publishing'
|
||||||
apply plugin: 'com.github.johnrengelman.shadow'
|
apply plugin: 'com.github.johnrengelman.shadow'
|
||||||
|
|
||||||
|
@ -62,6 +62,7 @@ subprojects {
|
||||||
includeGroup "com.github.milkbowl"
|
includeGroup "com.github.milkbowl"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
maven { url = 'https://telesphoreo.me/repo/maven/'}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -87,7 +88,7 @@ subprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
indra {
|
indra {
|
||||||
checkstyle = "$checkstyleVersion"
|
//checkstyle = "$checkstyleVersion"
|
||||||
|
|
||||||
github('EssentialsX', 'Essentials')
|
github('EssentialsX', 'Essentials')
|
||||||
gpl3OnlyLicense()
|
gpl3OnlyLicense()
|
||||||
|
@ -142,9 +143,7 @@ subprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
def outputTasks() {
|
def outputTasks() {
|
||||||
[":EssentialsX:shadowJar", ":EssentialsXAntiBuild:jar", ":EssentialsXChat:jar",
|
[":EssentialsX:shadowJar", ":EssentialsXSpawn:jar"].stream().map({ tasks.findByPath(it) })
|
||||||
":EssentialsXGeoIP:shadowJar", ":EssentialsXProtect:jar", ":EssentialsXSpawn:jar",
|
|
||||||
":EssentialsXXMPP:shadowJar"].stream().map({ tasks.findByPath(it) })
|
|
||||||
}
|
}
|
||||||
|
|
||||||
task copyToJars(type: Copy) {
|
task copyToJars(type: Copy) {
|
||||||
|
|
|
@ -3,12 +3,7 @@ rootProject.name = 'EssentialsXParent'
|
||||||
// Modules
|
// Modules
|
||||||
[
|
[
|
||||||
"",
|
"",
|
||||||
"AntiBuild",
|
|
||||||
"Chat",
|
|
||||||
"GeoIP",
|
|
||||||
"Protect",
|
|
||||||
"Spawn",
|
"Spawn",
|
||||||
"XMPP",
|
|
||||||
].each {
|
].each {
|
||||||
include(":EssentialsX$it")
|
include(":EssentialsX$it")
|
||||||
project(":EssentialsX$it").projectDir = file("Essentials$it")
|
project(":EssentialsX$it").projectDir = file("Essentials$it")
|
||||||
|
|
Loading…
Reference in a new issue