smengcl commented on code in PR #4070: URL: https://github.com/apache/ozone/pull/4070#discussion_r1053754006
########## pom.xml: ########## @@ -233,7 +233,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs <checkstyle.version>9.3</checkstyle.version> <surefire.fork.timeout>1200</surefire.fork.timeout> <aws-java-sdk.version>1.12.261</aws-java-sdk.version> - <frontend-maven-plugin.version>1.12.0</frontend-maven-plugin.version> + <frontend-maven-plugin.version>1.12.1</frontend-maven-plugin.version> Review Comment: I attempted to create directory by adding a plugin in `initialize` phase in recon pom but it didn't seem to work: ```xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>Workaround: Create lib directory under target</id> <phase>initialize</phase> <goals> <goal>run</goal> </goals> <configuration> <target name="Create lib dir"> <mkdir dir="${project.build.directory}/lib"/> </target> </configuration> </execution> </executions> </plugin> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
