aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorHacktheTime <l4bg0jb7@duck.com>2023-10-13 18:22:33 +0200
committerHacktheTime <l4bg0jb7@duck.com>2023-10-13 18:22:33 +0200
commite3d509924c44678e6c8f07bd0e33a75db894c810 (patch)
treeb3c03f3c3a96331061e8eb305ef75bbe6a33da4d /settings.gradle
parent76acd0ddad4230728fd5db6aad0918c25138e5cb (diff)
downloadBBsentials-e3d509924c44678e6c8f07bd0e33a75db894c810.tar.gz
BBsentials-e3d509924c44678e6c8f07bd0e33a75db894c810.tar.bz2
BBsentials-e3d509924c44678e6c8f07bd0e33a75db894c810.zip
more changes
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle26
1 files changed, 23 insertions, 3 deletions
diff --git a/settings.gradle b/settings.gradle
index 302d62b..321db47 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,10 +1,30 @@
pluginManagement {
repositories {
+ mavenCentral()
+ gradlePluginPortal()
+ maven {
+ url 'https://oss.sonatype.org/content/repositories/snapshots'
+ }
maven {
- name = 'Fabric'
- url = 'https://maven.fabricmc.net/'
+ url 'https://maven.architectury.dev/'
}
+ maven { url 'https://maven.fabricmc.net'}
+ maven { url 'https://maven.minecraftforge.net/'}
+ maven { url 'https://repo.spongepowered.org/maven/'}
+ maven { url 'https://repo.sk1er.club/repository/maven-releases/'}
gradlePluginPortal()
}
+ resolutionStrategy {
+ eachPlugin {
+ if (requested.id.id == "gg.essential.loom") {
+ useModule("gg.essential:architectury-loom:" + requested.version)
+ }
+ }
+ }
+
+}
+
+plugins {
+ id("org.gradle.toolchains.foojay-resolver-convention") version("0.6.0")
}
-include(":common", ":fabric")
+include(":common", ":fabric",":forge")