我将带有模块的现有项目导入eclipse,这是我需要尝试理解的第三方创建的现有代码。但是一个项目在mvn clean install上保持失败,并且以下错误不断发生;这似乎与网络服务问题有关:
ERROR] Failed to execute goal org.apache.cxf:cxf-codegen-
plugin:2.7.6:wsdl2java (xxxxxxxxxx) on project
xxxxxxxxxx:
com/sun/tools/xjc/BadCommandLineException:
com.sun.tools.xjc.BadCommandLineException -> [Help 1]
这是使用Web服务验证凭据的用户安全项目。
答案 0 :(得分:1)
如果您为Maven和“打印异常堆栈跟踪”激活“调试”模式,并且错误是BadCommandLineException的NoClassDefFoundError,那么我通过提供对cxf-codegen-plugin的依赖来解决该问题:
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
...
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>2.4.0-b180725.0644</version>
</dependency>
</dependencies>
</plugin>