Fix warnings in build.gradle

Signed-off-by: trivernis <trivernis@protonmail.com>
pull/107/head
trivernis 4 years ago
parent 930ae728d0
commit 49b1f8f1c7
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -46,19 +46,18 @@ repositories {
maven { maven {
name 'mikeprimm' name 'mikeprimm'
url 'http://repo.mikeprimm.com' url 'https://repo.mikeprimm.com'
} }
} }
dependencies { dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8" compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
compileOnly "com.destroystokyo.paper:paper-api:1.14.4-R0.1-SNAPSHOT" compileOnly "com.destroystokyo.paper:paper-api:1.14.4-R0.1-SNAPSHOT"
compileOnly "org.dynmap:dynmap-api:2.0" compileOnly "org.dynmap:dynmap-api:2.0"
compileOnly group: 'org.xerial', name: 'sqlite-jdbc', version: '3.28.0' compileOnly group: 'org.xerial', name: 'sqlite-jdbc', version: '3.28.0'
compile "io.papermc:paperlib:1.0.6" implementation "io.papermc:paperlib:1.0.6"
compile "org.bstats:bstats-bukkit:1.5" implementation "org.bstats:bstats-bukkit:1.5"
} }
apply plugin: "com.github.johnrengelman.shadow" apply plugin: "com.github.johnrengelman.shadow"
@ -69,16 +68,13 @@ shadowJar {
relocate 'org.bstats', 'net.trivernis.chunkmaster.bstats' relocate 'org.bstats', 'net.trivernis.chunkmaster.bstats'
} }
jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
processResources { processResources {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
with copySpec { with copySpec {
from 'src/main/resources/' from 'src/main/resources/'
include '**/*' include '**/*'
filter { String line -> filter { String line ->
line.replace('PLUGIN_VERSION', PLUGIN_VERSION) line.replace('$$PLUGIN_VERSION$$', PLUGIN_VERSION)
} }
} }
} }
@ -93,4 +89,7 @@ compileTestKotlin {
kotlinOptions { kotlinOptions {
jvmTarget = "1.8" jvmTarget = "1.8"
} }
} dependencies {
compileOnly group: 'junit', name: 'junit', version: '4.12'
}
}

@ -56,8 +56,13 @@ class LanguageManager(private val plugin: Chunkmaster) {
* Returns a localized message with replacements * Returns a localized message with replacements
*/ */
fun getLocalized(key: String, vararg replacements: Any): String { fun getLocalized(key: String, vararg replacements: Any): String {
val localizedString = langProps.getProperty(key) try {
return String.format(localizedString, *replacements) val localizedString = langProps.getProperty(key)
return String.format(localizedString, *replacements)
} catch (e: NullPointerException) {
plugin.logger.severe("Failed to get localized entry for $key")
throw e
}
} }
/** /**

@ -1,6 +1,6 @@
main: net.trivernis.chunkmaster.Chunkmaster main: net.trivernis.chunkmaster.Chunkmaster
name: Chunkmaster name: Chunkmaster
version: PLUGIN_VERSION version: $$PLUGIN_VERSION$$
description: Automated world pregeneration. description: Automated world pregeneration.
author: Trivernis author: Trivernis
website: trivernis.net website: trivernis.net

Loading…
Cancel
Save