neoforged / ModDevGradle

A Gradle plugin for developing Minecraft mods using NeoForge
https://projects.neoforged.net/neoforged/moddevgradle
GNU Lesser General Public License v2.1
30 stars 5 forks source link

Update to NFRT 1.0 #114

Closed shartte closed 1 month ago

shartte commented 1 month ago

Adds improved asset downloading, which now reuses assets found in local launcher installations.

Code-Wise, downloading assets no longer inherits all options of creating MC artifacts, making the intermediate NFRT class redundant.

neoforged-pr-publishing[bot] commented 1 month ago

Last commit published: 629a65818700ceb46b8294063f98f7a9285a2f2b.

PR Publishing ### The artifacts published by this PR: - :package: [`net.neoforged:moddev-gradle:1.0.15-pr-114-nfrt-1.0`](https://github.com/neoforged/ModDevGradle/packages/2208792) - :package: [`net.neoforged.moddev:net.neoforged.moddev.gradle.plugin:1.0.15-pr-114-nfrt-1.0`](https://github.com/neoforged/ModDevGradle/packages/2208793) - :package: [`net.neoforged.moddev.repositories:net.neoforged.moddev.repositories.gradle.plugin:1.0.15-pr-114-nfrt-1.0`](https://github.com/neoforged/ModDevGradle/packages/2208794) ### Repository Declaration In order to use the artifacts published by the PR, add the following repository to your buildscript: ```gradle repositories { maven { name 'Maven for PR #114' // https://github.com/neoforged/ModDevGradle/pull/114 url 'https://prmaven.neoforged.net/ModDevGradle/pr114' content { includeModule('net.neoforged', 'moddev-gradle') includeModule('net.neoforged.moddev', 'net.neoforged.moddev.gradle.plugin') includeModule('net.neoforged.moddev.repositories', 'net.neoforged.moddev.repositories.gradle.plugin') } } } ```