运行mvn包时出现Google web toolkit错误

问题描述 投票:0回答:1

我有一个使用gwt编写的项目,运行“mvn package”时出现以下错误:

[INFO] --- gwt-maven-plugin:1.0-rc-8:compile (default) @ Ifrs9-Web ---
[INFO] Compiling module iason.ifrs9.web.client.Ifrs9EntryPoint
[INFO]    Tracing compile failure path for type 'com.smartgwt.client.bean.types.EnumValueType'
[INFO]       [ERROR] Errors in 'jar:file:/C:/Users/andrea/.m2/repository/com/smartgwt/smartgwt/4.0/smartgwt-4.0.jar!/com/smartgwt/client/bean/types/EnumValueType.java'
[INFO]          [ERROR] Line 26: Name clash: The method registerValueType(Class<T>) of type EnumValueType<ValueType> has the same erasure as registerValueType(Class<T>) of type OtherValueType<ValueType> but does not hide it
[INFO]    Tracing compile failure path for type 'com.smartgwt.client.bean.types.JsoValueType'
[INFO]       [ERROR] Errors in 'jar:file:/C:/Users/andrea/.m2/repository/com/smartgwt/smartgwt/4.0/smartgwt-4.0.jar!/com/smartgwt/client/bean/types/JsoValueType.java'
[INFO]          [ERROR] Line 31: Name clash: The method registerValueType(Class<T>) of type JsoValueType<ValueType> has the same erasure as registerValueType(Class<T>) of type OtherValueType<ValueType> but does not hide it
[INFO]    Finding entry point classes
[INFO]       [ERROR] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:15 min
[INFO] Finished at: 2019-04-24T11:47:23+02:00
[INFO] Final Memory: 20M/212M

你能帮我解决一下这个错误吗?

gwt smartgwt
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.