-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide a MDK version using ModDevGradle #73
Conversation
build.gradle
Outdated
systemProperty 'forge.enabledGameTestNamespaces', project.mod_id | ||
programArgument '--nogui' | ||
} | ||
// accessTransformers.add(rootProject.file('src/main/resources/META-INF/accesstransformer.cfg')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need a string here, not a file. At least with moddev 0.1.94, didn't test the version here (0.1.74).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, now with Gradle 8.8 released, we can actually make this just a normal file collection.
Previously it was impossible to set defaults for file collections (and we wanted the default location to work without config)
This pull request updates the MDK to utilize ModDevGradle (MDG), which is currently in a Work-In-Progress (WIP) state. The purpose of this PR is to showcase the migration process from a NeoGradle-based project to one that incorporates MDG.