diff --git a/build.gradle b/build.gradle index 8bba3db..7bbb087 100644 --- a/build.gradle +++ b/build.gradle @@ -93,19 +93,25 @@ yamlang { // configure the maven publication publishing { - publications { - create("mavenJava", MavenPublication) { - artifactId = project.archives_base_name - from components.java + repositories { + maven { + name = "enjaraiMaven" + url = "https://maven.enjarai.dev/releases" + credentials(PasswordCredentials) + authentication { + basic(BasicAuthentication) + } } } - // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. - repositories { - // Add repositories to publish to here. - // Notice: This block does NOT have the same function as the block in the top level. - // The repositories here will be used for publishing your artifact, not for - // retrieving dependencies. + publications { + mavenJava(MavenPublication) { + groupId = group + artifactId = archivesBaseName + version = version + + from components.java + } } } diff --git a/src/main/resources/assets/illusionist/icon.png b/src/main/resources/assets/illusionist/icon.png index 075d662..9ae3b47 100644 Binary files a/src/main/resources/assets/illusionist/icon.png and b/src/main/resources/assets/illusionist/icon.png differ