This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.6.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 4abae3a092c779c7c2a71374e5712fefc4589035 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 b7ec063dcc..1d9b1b2cad 100644 --- a/maven-plugins/wsdl-validator-plugin/pom.xml +++ b/maven-plugins/wsdl-validator-plugin/pom.xml @@ -53,5 +53,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>
