1
0
mirror of https://github.com/Suiranoil/SkinRestorer.git synced 2026-01-16 04:42:12 +00:00

use neoforge gradle

This commit is contained in:
2024-08-03 10:41:00 +03:00
parent c755417ebf
commit 82baf0b63e
7 changed files with 79 additions and 62 deletions

View File

@@ -6,45 +6,57 @@ pluginManagement {
forRepository {
maven {
name = 'Fabric'
url = uri('https://maven.fabricmc.net')
url = 'https://maven.fabricmc.net'
}
}
filter {
includeGroup('net.fabricmc')
includeGroup('fabric-loom')
includeGroupAndSubgroups('net.fabricmc')
includeGroupAndSubgroups('fabric-loom')
}
}
exclusiveContent {
forRepository {
maven {
name = 'Forge'
url = uri("https://maven.minecraftforge.net")
url = 'https://maven.minecraftforge.net'
}
}
filter {
includeGroupAndSubgroups("net.minecraftforge")
includeGroupAndSubgroups('net.minecraftforge')
}
}
exclusiveContent {
forRepository {
maven {
name = 'Sponge Snapshots'
url = uri("https://repo.spongepowered.org/repository/maven-public")
name = 'NeoForge'
url = 'https://maven.neoforged.net/releases'
}
}
filter {
includeGroupAndSubgroups("org.spongepowered")
includeGroupAndSubgroups('net.neoforged')
includeGroupAndSubgroups('codechicken')
}
}
exclusiveContent {
forRepository {
maven {
name = 'Sponge'
url = 'https://repo.spongepowered.org/repository/maven-public'
}
}
filter {
includeGroupAndSubgroups('org.spongepowered')
}
}
exclusiveContent {
forRepository {
maven {
name = 'ParchmentMC'
url = uri("https://maven.parchmentmc.org")
url = 'https://maven.parchmentmc.org'
}
}
filter {
includeGroupAndSubgroups("org.parchmentmc")
includeGroupAndSubgroups('org.parchmentmc')
}
}
}