diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-27 12:40:06 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-27 12:40:06 +0200 |
commit | 328750a979e162ba92ec8957e81bf89989d61f63 (patch) | |
tree | 7012f3637ac76029f342737b87cda554adfa14be | |
parent | d7bd34e7a35c8908f1ed8dd1bb934cf36993789c (diff) | |
download | skyhanni-328750a979e162ba92ec8957e81bf89989d61f63.tar.gz skyhanni-328750a979e162ba92ec8957e81bf89989d61f63.tar.bz2 skyhanni-328750a979e162ba92ec8957e81bf89989d61f63.zip |
added comments to repositories why they are needed
-rw-r--r-- | build.gradle.kts | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 9bb903744..dac6b37fb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -41,17 +41,17 @@ sourceSets.main { repositories { mavenCentral() mavenLocal() - maven("https://repo.spongepowered.org/maven/") - maven("https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1") - maven("https://jitpack.io") { + maven("https://repo.spongepowered.org/maven/") // mixin + maven("https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1") // DevAuth + maven("https://jitpack.io") { // NotEnoughUpdates (compiled against) content { includeGroupByRegex("com\\.github\\..*") } } - maven("https://repo.nea.moe/releases") - maven("https://maven.notenoughupdates.org/releases") - maven("https://repo.hypixel.net/repository/Hypixel/") - maven("https://maven.teamresourceful.com/repository/thatgravyboat/") + maven("https://repo.nea.moe/releases") // libautoupdate + maven("https://maven.notenoughupdates.org/releases") // NotEnoughUpdates (dev env) + maven("https://repo.hypixel.net/repository/Hypixel/") // mod-api + maven("https://maven.teamresourceful.com/repository/thatgravyboat/") // DiscordIPC } val shadowImpl: Configuration by configurations.creating { @@ -118,7 +118,6 @@ dependencies { shadowImpl("org.jetbrains.kotlin:kotlin-reflect:1.9.0") implementation(libs.hotswapagentforge) -// testImplementation(kotlin("test")) testImplementation("com.github.NotEnoughUpdates:NotEnoughUpdates:faf22b5dd9:all") { exclude(module = "unspecified") isTransitive = false @@ -229,7 +228,6 @@ tasks.withType(Jar::class) { } } - val remapJar by tasks.named<net.fabricmc.loom.task.RemapJarTask>("remapJar") { archiveClassifier.set("") from(tasks.shadowJar) |