public void execute() throws MojoExecutionException{ // Need to build a URLClassloader since Maven removed it form the chain ClassLoader parent = this.getClass().getClassLoader(); String originalSystemClasspath = this.initClassLoader( parent ); try { sourceDestDir.mkdirs(); getDestDir().mkdirs(); File[] wsdls = getWSDLFiles(); if(wsdls.length == 0 && (wsdlUrls == null || wsdlUrls.size() ==0)){ getLog().info( "No WSDLs are found to process, Specify atleast one of the following parameters: wsdlFiles, wsdlDirectory or wsdlUrls."); return; } ... } ...}您能展示一下如何调用插件及其配置吗?Could you show how you invoke the plugin and its configuration? 这篇关于如何在Maven中为生成的源创建文件夹?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 05-26 20:45