-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use distinct branding for tasks when they're being used as part of Ne…
…oDev (#186)
- Loading branch information
Showing
8 changed files
with
51 additions
and
34 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/main/java/net/neoforged/moddevgradle/internal/Branding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package net.neoforged.moddevgradle.internal; | ||
|
||
/** | ||
* Used to customize the groups of tasks generated by MDG. | ||
* | ||
* @param publicTaskGroup Use this group for tasks that are considered to be part of the user-interface of MDG. | ||
* @param internalTaskGroup Use this group for tasks that are considered to be an implementation detail of MDG. | ||
*/ | ||
record Branding(String publicTaskGroup, String internalTaskGroup) { | ||
public static final Branding MDG = new Branding("mod development", "mod development/internal"); | ||
public static final Branding NEODEV = new Branding("neoforge development", "neoforge development/internal"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters