9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2026-01-04 15:31:38 +00:00

Bump dependencies and version

This commit is contained in:
SamB440
2022-02-05 20:33:44 +00:00
parent 7e4e113a5b
commit c832a67847
4 changed files with 6 additions and 17 deletions

View File

@@ -29,6 +29,3 @@ dependencies {
exclude("org.apache.commons")
}
}
repositories {
mavenCentral()
}

View File

@@ -1,30 +1,22 @@
plugins {
id("com.github.johnrengelman.shadow") version("7.1.1")
id("com.github.johnrengelman.shadow") version("7.1.2")
id("java")
}
group = "net.islandearth.rpgregions"
version = "1.4.2"
version = "1.4.3"
java.sourceCompatibility = JavaVersion.VERSION_16
java.targetCompatibility = JavaVersion.VERSION_16
dependencies {
testImplementation("junit:junit:4.5")
testImplementation("junit:junit:4.13.2")
implementation(project(":rpgregions"))
implementation(project(":modern"))
implementation(project(":api"))
}
tasks.shadowJar {
//dependencies {
// exclude(dependency {
// it.moduleGroup == 'commons-io'
// })
// exclude(dependency {
// it.moduleGroup == 'commons-codec'
// })
//}
relocate("net.islandearth.languagy", "net.islandearth.rpgregions.libs.languagy")
relocate("co.aikar.commands", "net.islandearth.rpgregions.libs.acf")
relocate("co.aikar.idb", "net.islandearth.rpgregions.libs.idb")

View File

@@ -11,7 +11,7 @@ tasks.compileJava {
}
dependencies {
testImplementation("junit:junit:4.12")
testImplementation("junit:junit:4.13.2")
implementation("net.islandearth:languagy:2.0.4-SNAPSHOT") // languagy
compileOnly("com.sk89q.worldguard:worldguard-bukkit:7.0.4-SNAPSHOT") {

View File

@@ -18,7 +18,7 @@ dependencies {
implementation("net.islandearth:languagy:2.0.4-SNAPSHOT") // languagy
implementation("co.aikar:acf-paper:0.5.0-SNAPSHOT") // commands
implementation("co.aikar:idb-core:1.0.0-SNAPSHOT") // database
implementation("org.bstats:bstats-bukkit:2.2.1") // plugin stats
implementation("org.bstats:bstats-bukkit:3.0.0") // plugin stats
implementation("io.papermc:paperlib:1.0.4") // paperlib - async teleport on Paper
compileOnly("com.sk89q.worldguard:worldguard-bukkit:7.0.4-SNAPSHOT") {
@@ -39,7 +39,7 @@ dependencies {
compileOnly(":AlonsoLevels_v2.0-BETA") // alonsolevels
compileOnly(":Quests-4.0.1") // quests
compileOnly("com.github.shynixn.headdatabase:hdb-api:1.0") // head database
compileOnly("com.github.plan-player-analytics:Plan:5.3.1284") // plan
compileOnly("com.github.plan-player-analytics:Plan:5.4.1366") // plan
compileOnly("io.lumine.xikage:MythicMobs:4.9.1") {
exclude("org.apache.commons")
}