Skip to content

Commit

Permalink
Fixes source wrong in TemplateCompileTask
Browse files Browse the repository at this point in the history
Closes gh-28
  • Loading branch information
rainboyan committed Oct 15, 2024
1 parent 28f9a4a commit 6f0c8ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class AbstractGroovyTemplatePlugin implements Plugin<Project> {
project.name
)
templateCompileTask.setSource(
project.file("${project.projectDir}/$pathToSource")
project.file("${project.projectDir}/$pathToSource/views")
)

templateCompileTask.dependsOn( allTasks.findByName('classes') )
Expand Down

0 comments on commit 6f0c8ce

Please sign in to comment.