Skip to content

Commit

Permalink
Merge pull request #157 from GBuervenich/gradle7-compatibility
Browse files Browse the repository at this point in the history
Add compatibility for Gradle 7 (Fix #143)
  • Loading branch information
jjlauer authored Nov 4, 2023
2 parents 4b20b0c + 7c6c7b7 commit 799fdbf
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ public void setOutputBaseDirectory(Object outputBaseDirectory, PathValidation pv
}

@Input // Neither input nor output directory, but generated rocker.conf depends on it
public String getClassBaseDirectoryPath() {
return classBaseDirectory.getAbsolutePath();
}

@Internal
public File getClassBaseDirectory() {
return classBaseDirectory;
}
Expand Down

0 comments on commit 799fdbf

Please sign in to comment.