Skip to content

Commit 53564cf

Browse files
committed
#21 GradlePlugin: default target changed to buildDir/java-comment-preprocessor/${taskName}
1 parent e6b7f15 commit 53564cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jcp/src/main/java/com/igormaznitsa/jcp/gradle/JcpPreprocessTask.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public JcpPreprocessTask() {
187187
this.fileExtensions = factory.listProperty(String.class).convention(new ArrayList<>(Arrays.asList("java", "txt", "htm", "html")));
188188

189189
this.baseDir = factory.property(File.class).convention(this.getProject().getProjectDir());
190-
this.target = factory.property(File.class).convention(new File(this.getProject().getBuildDir(), "preprocessed"));
190+
this.target = factory.property(File.class).convention(new File(this.getProject().getBuildDir(), "java-comment-preprocessor" + File.separatorChar + this.getTaskIdentity().name));
191191
}
192192

193193
@InputFiles

0 commit comments

Comments
 (0)