This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.4.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 0dd18df8cbc22b4b2658fd63b9c2eaab701bbc35 Author: timsacre <[email protected]> AuthorDate: Sat Apr 22 15:13:05 2023 +0200 CXF-8839: Missing dependency on plexus-utils in cxf-wsdl-validator-plugin (#1246) CXF-8839: Missing dependency on plexus-utils in cxf-wsdl-validator-plugin Co-authored-by: sati <[email protected]> --- maven-plugins/wsdl-validator-plugin/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maven-plugins/wsdl-validator-plugin/pom.xml b/maven-plugins/wsdl-validator-plugin/pom.xml index 5ba671a5e9..753318701e 100644 --- a/maven-plugins/wsdl-validator-plugin/pom.xml +++ b/maven-plugins/wsdl-validator-plugin/pom.xml @@ -58,5 +58,10 @@ <artifactId>cxf-tools-validator</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + <version>${cxf.plexus-utils.version}</version> + </dependency> </dependencies> </project>
