Skip to content

Commit

Permalink
fix: Cannot query the value of this property because it has no value …
Browse files Browse the repository at this point in the history
…available
  • Loading branch information
tomasbjerre committed Nov 9, 2024
1 parent 94693d8 commit 3e7bd22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
#Sat Nov 09 11:33:13 CET 2024
#Sat Nov 09 14:18:19 CET 2024
description=Automate changelog and versioning with conventional commits and Git.
group=se.bjurr.gitchangelog
implementationClass=se.bjurr.gitchangelog.plugin.gradle.GitChangelogGradlePlugin
Expand All @@ -8,4 +8,4 @@ sourceCompatibility=17
stripGradlePluginSuffix=false
tags=git,changelog,releasenotes,patchnotes,conventional commits,semantic version,semantic release
targetCompatibility=17
version=3.0.0
version=3.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ public class GitChangelogTask extends DefaultTask {
public Property<String> dateFormat = this.getProject().getObjects().property(String.class);
public Property<String> timeZone = this.getProject().getObjects().property(String.class);
public Property<Boolean> removeIssueFromMessage =
this.getProject().getObjects().property(Boolean.class);
this.getProject().getObjects().property(Boolean.class).convention(false);
public Property<String> ignoreCommitsIfMessageMatches =
this.getProject().getObjects().property(String.class);
public Property<String> untaggedName = this.getProject().getObjects().property(String.class);
public Property<String> noIssueName = this.getProject().getObjects().property(String.class);
public Property<Boolean> ignoreCommitsWithoutIssue =
this.getProject().getObjects().property(Boolean.class);
this.getProject().getObjects().property(Boolean.class).convention(false);
public Property<String> ignoreTagsIfNameMatches =
this.getProject().getObjects().property(String.class);

Expand Down

0 comments on commit 3e7bd22

Please sign in to comment.