9
0
mirror of https://github.com/Auxilor/EcoMobs.git synced 2026-01-06 15:51:39 +00:00

Added MythicMobs mobs support. Usage: 'base-mob: mythicmobs_<MythicMobName>_<level>'

This commit is contained in:
_OfTeN_
2021-09-19 22:49:49 +03:00
parent 31ccdf2589
commit a2c8b73dbc
6 changed files with 96 additions and 11 deletions

View File

@@ -39,6 +39,7 @@ allprojects {
maven { url 'https://maven.sk89q.com/repo/' }
maven { url 'https://github.com/factions-site/repo/raw/public/' }
maven { url 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
maven { url 'https://mvn.lumine.io/repository/maven-public/' }
}
jar {
@@ -85,7 +86,15 @@ shadowJar {
}
jar {
archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + " " + "unshaded" + ".jar"
archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + ".jar"
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
group = 'com.willfp'