File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
changelog-gradle/src/main/java/net/minecraftforge/gitversion/gradle/changelog Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 88import net .minecraftforge .gradleutils .shared .ToolExecBase ;
99import org .gradle .api .file .ProjectLayout ;
1010import org .gradle .api .file .RegularFileProperty ;
11+ import org .gradle .api .logging .LogLevel ;
1112import org .gradle .api .provider .Property ;
1213import org .gradle .api .provider .ProviderFactory ;
1314import org .gradle .api .tasks .Input ;
@@ -29,10 +30,11 @@ abstract class GenerateChangelogImpl extends ToolExecBase<ChangelogProblems> imp
2930 @ Inject
3031 public GenerateChangelogImpl () {
3132 super (GitVersionTools .GITVERSION );
33+ this .setDescription ("Generates a changelog for this project based on the Git history using Git Version." );
3234
33- this .setDescription ( "Generates a changelog for the project based on the Git history using Git Version." );
35+ this .getStandardOutputLogLevel (). set ( LogLevel . INFO );
3436
35- this .getOutputFile ().convention (this .getDefaultOutputFile ( " txt" ));
37+ this .getOutputFile ().convention (this .getOutputFile ( "changelog. txt" ));
3638
3739 this .getBuildMarkdown ().convention (false );
3840
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ gradle.beforeProject { Project project ->
3232}
3333
3434dependencyResolutionManagement. versionCatalogs. register(' libs' ) {
35- version ' gradleutils' , ' 3.3.21 '
35+ version ' gradleutils' , ' 3.3.32 '
3636
3737 plugin ' licenser' , ' net.minecraftforge.licenser' version ' 1.2.0' // https://plugins.gradle.org/plugin/net.minecraftforge.licenser
3838 plugin ' javadoc-links' , ' io.freefair.javadoc-links' version ' 8.14' // https://plugins.gradle.org/plugin/io.freefair.javadoc-links
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ dependencyResolutionManagement {
2727 versionCatalogs. register(' libs' ) {
2828 // Plugins
2929 plugin ' licenser' , ' net.minecraftforge.licenser' version ' 1.2.0'
30- plugin ' gradleutils' , ' net.minecraftforge.gradleutils' version ' 3.3.21 '
30+ plugin ' gradleutils' , ' net.minecraftforge.gradleutils' version ' 3.3.32 '
3131 plugin ' shadow' , ' com.gradleup.shadow' version ' 9.2.2'
3232
3333 // Git
You can’t perform that action at this time.
0 commit comments