# Conflicts: # Common/src/main/java/tschipp/carryon/CarryOnCommon.java # Common/src/main/java/tschipp/carryon/CarryOnCommonClient.java # Common/src/main/java/tschipp/carryon/client/keybinds/ConflictFreeKeyMapping.java # Common/src/main/java/tschipp/carryon/client/render/CarriedObjectRender.java # Common/src/main/java/tschipp/carryon/mixin/AvatarRenderStateMixin.java # Common/src/main/java/tschipp/carryon/mixin/HumanoidModelMixin.java # Common/src/main/resources/carryon.mixins.json # Fabric/build.gradle # build.gradle # gradle.properties
64 lines
1.6 KiB
Groovy
64 lines
1.6 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenLocal()
|
|
mavenCentral()
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = 'Fabric'
|
|
url = uri('https://maven.fabricmc.net')
|
|
}
|
|
}
|
|
filter {
|
|
includeGroup('net.fabricmc')
|
|
includeGroup('net.fabricmc.unpick')
|
|
includeGroup('fabric-loom')
|
|
includeGroup('net.fabricmc.unpick')
|
|
}
|
|
}
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = 'Sponge'
|
|
url = uri('https://repo.spongepowered.org/repository/maven-public')
|
|
}
|
|
}
|
|
filter {
|
|
includeGroupAndSubgroups("org.spongepowered")
|
|
}
|
|
}
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = 'Forge'
|
|
url = uri('https://maven.minecraftforge.net')
|
|
}
|
|
}
|
|
filter {
|
|
includeGroupAndSubgroups('net.minecraftforge')
|
|
}
|
|
}
|
|
|
|
maven {
|
|
name = 'ParchmentMC'
|
|
url = 'https://maven.parchmentmc.org'
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
|
|
}
|
|
|
|
if (System.getenv('BUILD_NUMBER') != null) {
|
|
version += "." + System.getenv('BUILD_NUMBER')
|
|
}
|
|
|
|
rootProject.name = 'CarryOn'
|
|
//include("Common", "Fabric", "NeoForge")
|
|
include("Common", "Fabric", "Forge", "NeoForge") |