diff --git a/build.gradle b/build.gradle index 43713f0e..d5edce12 100644 --- a/build.gradle +++ b/build.gradle @@ -40,9 +40,6 @@ def getGitVersion() { return [versionStr.toString().trim(), true] } -var isMavenDefined = findProperty("MAVEN_USERNAME") != null && findProperty("MAVEN_PASSWORD") != null -var isLavalinkMavenDefined = findProperty("LAVALINK_MAVEN_USERNAME") != null && findProperty("LAVALINK_MAVEN_PASSWORD") != null - subprojects { apply plugin: "java" apply plugin: "maven-publish" @@ -55,7 +52,6 @@ subprojects { publishing { repositories { - System.out.println("Publishing to JitPack") maven { diff --git a/main/src/main/java/com/github/topi314/lavasrc/tidal/TidalSourceManager.kt b/main/src/main/java/com/github/topi314/lavasrc/tidal/TidalSourceManager.kt index 6ece88f7..288ff241 100644 --- a/main/src/main/java/com/github/topi314/lavasrc/tidal/TidalSourceManager.kt +++ b/main/src/main/java/com/github/topi314/lavasrc/tidal/TidalSourceManager.kt @@ -345,4 +345,4 @@ class TidalSourceManager( override fun getHttpInterface(): HttpInterface { return httpInterfaceManager.getInterface() } -} +} \ No newline at end of file diff --git a/plugin/build.gradle b/plugin/build.gradle index 199b2bf8..d8be1ebd 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -2,9 +2,9 @@ plugins { id "dev.arbjerg.lavalink.gradle-plugin" version "1.0.15" } -archivesBaseName = "lavasrc-plugin" +archivesBaseName = "baldman-lavasrc" lavalinkPlugin { - name = "lavasrc-plugin" + name = "baldman-lavasrc" apiVersion = "4.0.0" serverVersion = "4.0.0" configurePublishing = false @@ -26,4 +26,11 @@ publishing { artifactId archivesBaseName } } + + repositories { + maven { + name = "JitPack" + url = uri("https://jitpack.io") + } + } } diff --git a/settings.gradle b/settings.gradle index 83a5f8d9..4343688b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,4 +1,4 @@ -rootProject.name = "LavaSrc" +rootProject.name = "BaldMan-LavaSrc" enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") include(":main")