This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/logging-log4j-transform.git
commit 63740e02cdfa18943a9d9fe3c85313b0a66a00fa Author: Piotr P. Karwasz <[email protected]> AuthorDate: Tue May 2 13:09:31 2023 +0200 Removes `readonly` from sourceDirectory/outputDirectory params --- .../java/org/apache/logging/log4j/transform/maven/LocationMojo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/log4j-transform-maven-plugin/src/main/java/org/apache/logging/log4j/transform/maven/LocationMojo.java b/log4j-transform-maven-plugin/src/main/java/org/apache/logging/log4j/transform/maven/LocationMojo.java index 7eb2c8a..7e583a3 100644 --- a/log4j-transform-maven-plugin/src/main/java/org/apache/logging/log4j/transform/maven/LocationMojo.java +++ b/log4j-transform-maven-plugin/src/main/java/org/apache/logging/log4j/transform/maven/LocationMojo.java @@ -68,13 +68,13 @@ public class LocationMojo extends AbstractMojo { /** * The directory containing class files to process. */ - @Parameter(defaultValue = "${project.build.outputDirectory}", required = true, readonly = true) + @Parameter(defaultValue = "${project.build.outputDirectory}", required = true, readonly = false) private File sourceDirectory; /** * The directory containing processed files. */ - @Parameter(defaultValue = "${project.build.outputDirectory}", required = true, readonly = true) + @Parameter(defaultValue = "${project.build.outputDirectory}", required = true, readonly = false) private File outputDirectory; /**
