mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
chore: Address kotlin String#capitalize() deprecation (#2308)
* chore: Address kotlin String#capitalize() deprecation - Fixes #2283 - Don't bother with the longer version that allows Locales, we don't need that * Address comments
This commit is contained in:
parent
f0aef98870
commit
39de48cdb1
@ -204,7 +204,7 @@ fun Project.applyLibrariesConfiguration() {
|
|||||||
from(libsComponent)
|
from(libsComponent)
|
||||||
|
|
||||||
group = "com.fastasyncworldedit"
|
group = "com.fastasyncworldedit"
|
||||||
artifactId = "FastAsyncWorldEdit-Libs-${project.name.capitalize()}"
|
artifactId = "FastAsyncWorldEdit-Libs-${project.name.replaceFirstChar(Char::titlecase)}"
|
||||||
version = version
|
version = version
|
||||||
|
|
||||||
pom {
|
pom {
|
||||||
|
Loading…
Reference in New Issue
Block a user