* Initial profiler commands * copy paste * leaf * add todo * command feedback * Allow all commands in SP without cheats * fix SP command check * make client commands actual client commands * Start client profile command implementation * Remove ArgumentParser class --------- Co-authored-by: Spottedleaf <Spottedleaf@users.noreply.github.com>
51 lines
1.3 KiB
Groovy
51 lines
1.3 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = 'Fabric'
|
|
url = 'https://maven.fabricmc.net/'
|
|
}
|
|
maven {
|
|
name = 'NeoForged'
|
|
url = 'https://maven.neoforged.net/releases/'
|
|
}
|
|
maven {
|
|
name = 'jmp'
|
|
url = 'https://repo.jpenilla.xyz/snapshots'
|
|
mavenContent { snapshotsOnly() }
|
|
}
|
|
maven {
|
|
name = 'architectury'
|
|
url = 'https://maven.architectury.dev/'
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
id("xyz.jpenilla.quiet-architectury-loom") version "1.7.294" apply false
|
|
id 'io.github.goooler.shadow' version '8.1.8' apply false
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
maven {
|
|
name = 'Fabric'
|
|
url = 'https://maven.fabricmc.net/'
|
|
}
|
|
}
|
|
versionCatalogs {
|
|
create("fabricApiLibs") {
|
|
from("net.fabricmc.fabric-api:fabric-api-catalog:0.102.0+1.21.1")
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Moonrise"
|
|
|
|
include("fabric")
|
|
findProject(":fabric").name = "Moonrise-Fabric"
|
|
include("neoforge")
|
|
findProject(":neoforge").name = "Moonrise-NeoForge"
|