2017-08-21 3 views
0

Intershop Commerce Management 7.7から7.9にプロジェクトを更新しましたが、コンパイルエラーが発生する以外はすべてうまくいった:Intershop 7.7から7.9への更新後に「org.eclipse.emf.ecore.EObject not found」

...\app_sf_responsive\javasource\com\intershop\application\responsive\internal\preview\call\CMSPageCallInterface.java:54: error: cannot access EObject 
     for(Parameter p : PageletModelUtils.INSTANCE.getCallParameterDefinitions(app.getExtension(ApplicationBOPageletModelRepository.class), cepd)) 
                ^
    class file for org.eclipse.emf.ecore.EObject not found 

は、私はいくつかの移行手順を逃しましたか?

答えて

2

あなたは見つからないため、コンパイル依存関係のこのエラーが発生します。

依存関係 { ... コンパイル 'org.eclipse.emf:org.eclipse.emf.common' コンパイル「orgのあなたのbuild.gradleファイルの依存関係の閉鎖に次の文を挿入する必要があります。 eclipse.emf:org.eclipse.emf.ecore ' ... }

移行タスクの成功に役立つことを望みます。

+0

ありがとう、それは問題を解決しました。 –