GWT Compilation Error - IncompatibleClassChangeError

前端 未结 8 2551
暗喜
暗喜 2021-02-14 10:07

When compiling the project, I get this obscure Exception

Looking for precompiled archives.  To disable, use -Dgwt.usearchives=false
Loading archived module: jar:         


        
8条回答
  •  青春惊慌失措
    2021-02-14 10:27

    In my project, a modular GWT application, I had to add a dependency to gwt-dev into the module that started the whole app.

    
        com.google.gwt
        gwt-dev
        provided
    
    

提交回复
热议问题