mirror of
https://github.com/Suiranoil/SkinRestorer.git
synced 2026-01-16 04:42:12 +00:00
63 lines
1.7 KiB
Groovy
63 lines
1.7 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = 'Fabric'
|
|
url = uri('https://maven.fabricmc.net')
|
|
}
|
|
}
|
|
filter {
|
|
includeGroup('net.fabricmc')
|
|
includeGroup('fabric-loom')
|
|
}
|
|
}
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = 'Forge'
|
|
url = uri("https://maven.minecraftforge.net")
|
|
}
|
|
}
|
|
filter {
|
|
includeGroupAndSubgroups("net.minecraftforge")
|
|
}
|
|
}
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = 'Sponge Snapshots'
|
|
url = uri("https://repo.spongepowered.org/repository/maven-public")
|
|
}
|
|
}
|
|
filter {
|
|
includeGroupAndSubgroups("org.spongepowered")
|
|
}
|
|
}
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = 'ParchmentMC'
|
|
url = uri("https://maven.parchmentmc.org")
|
|
}
|
|
}
|
|
filter {
|
|
includeGroupAndSubgroups("org.parchmentmc")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
|
|
}
|
|
|
|
// This should match the folder name of the project, or else IDEA may complain (see https://youtrack.jetbrains.com/issue/IDEA-317606)
|
|
rootProject.name = 'skin-restorer'
|
|
include('common')
|
|
include('fabric')
|
|
include('forge')
|
|
include('neoforge')
|