You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ This build script was heavily inspired by the build script created by GT New Hor
11
11
- Automatic "Tag" creation, which can supply your Java code with the ModId, ModName, and Version generated for you by Gradle
12
12
- Access Transformers, can even have multiple
13
13
- Core Mods
14
-
- Mixin, or specifying Mixin as a dependency if you do not use it, but projects you depend on do
14
+
- Mixin using MixinBooter 8 and Unimix, or specifying Mixin as a dependency if you do not use it but projects you depend on do
15
15
- Automatic repository settings, including common repositories such as CurseMaven, Modrinth Maven, and others
16
16
- Automatically include JEI and The One Probe in your project, at both compile-time and runtime
17
17
- CurseForge and Modrinth deployments
@@ -69,11 +69,13 @@ And many more to come! And of course, all of these features are toggleable via a
69
69
## How to Use
70
70
### Files
71
71
-`build.gradle`: This file is automatically updated, and as a result should not be modified by the user directly
72
-
-`gradle.properties`: Contains all of the user configuration for the build script
73
-
-`dependencies.gradle`: Add your mod's dependencies here. This is separate from the main build script so that you can replace `build.gradle` if an update is available
74
-
-`repositories.gradle`: Add your dependencies' repositories here. Many common ones are already handled by `build.gradle`
75
-
-`addon.gradle`: An optional file, which can be used if you have any more advanced gradle commands. However, we are open to new features, so let us know if there is something you want that we could add to this build script to avoid needing this file!
72
+
-`gradle.properties`: Contains all the user configuration for the build script
76
73
-`settings.gradle`: This file contains some basic setup of the build script. It is currently not versioned, so it is safe to add to, though should not have things removed from it
74
+
### Custom Files
75
+
Any of these files can optionally be either `.gradle` (Groovy), or `.gradle.kts` (Kotlin DSL).
76
+
-`dependencies.gradle[.kts]`: Add your mod's dependencies here. This is separate from the main build script so that you can replace `build.gradle` if an update is available
77
+
-`repositories.gradle[.kts]`: Add your dependencies' repositories here. Many common ones are already handled by `build.gradle`
78
+
-`addon.gradle[.kts]`: An optional file, which can be used if you have any more advanced gradle commands. However, we are open to new features, so let us know if there is something you want that we could add to this build script to avoid needing this file!
0 commit comments