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 f9f4bf146c6424d9f3704ef34be58e7bdd593402 Author: Andriy Redko <[email protected]> AuthorDate: Sat Jan 13 13:45:19 2024 -0500 Add <goalPrefix> to java2swagger-plugin --- maven-plugins/java2swagger-plugin/pom.xml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/maven-plugins/java2swagger-plugin/pom.xml b/maven-plugins/java2swagger-plugin/pom.xml index ba6005cd7a..10abec3050 100644 --- a/maven-plugins/java2swagger-plugin/pom.xml +++ b/maven-plugins/java2swagger-plugin/pom.xml @@ -141,7 +141,18 @@ <version>${project.version}</version> </dependency> </dependencies> - + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-plugin-plugin</artifactId> + <configuration> + <goalPrefix>cxf-java2swagger</goalPrefix> + </configuration> + </plugin> + </plugins> + </build> <profiles> <profile>
