Closed mpscheidt closed 5 years ago
There is an error in the documentation:
tmpDir = file('${project.buildDir}/jasperreports') outDir = file('${project.buildDir}/classes/main')
This will create a directory called ${project.buildDir} in the project's main dir.
${project.buildDir}
Example should use double quotes to specify tmpDir and outDir, in order to support String interpolation, replacing ${project.buildDir} with its value:
tmpDir = file("${project.buildDir}/jasperreports") outDir = file("${project.buildDir}/classes/main")
Fixed by 3652cf773289652aa8fdd9b629ba1357e3c8e977.
There is an error in the documentation:
This will create a directory called
${project.buildDir}
in the project's main dir.Example should use double quotes to specify tmpDir and outDir, in order to support String interpolation, replacing
${project.buildDir}
with its value: