/* * Iris is a World Generator for Minecraft Servers * Copyright (c) 2026 Arcane Arts (Volmit Software) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ pluginManagement { repositories { maven { name = 'FabricMC' url = uri('https://maven.fabricmc.net/') } gradlePluginPortal() mavenCentral() } } plugins { id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0' } rootProject.name = 'iris-fabric' dependencyResolutionManagement { versionCatalogs { libs { from(files('../../gradle/libs.versions.toml')) } } } // Shared VolmLib source resolution; see gradle/volmlib-resolution.settings.gradle. apply from: new File(settingsDir, '../../gradle/volmlib-resolution.settings.gradle').canonicalFile includeBuild('../..') { dependencySubstitution { substitute(module('art.arcane:core')).using(project(':core')) substitute(module('art.arcane:spi')).using(project(':spi')) } }