vaadin アドオンと gradle 構成を使用した spring-vaadin プロジェクトがあります。プロジェクトに V-Leaflet を追加すると、最初は機能しましたが、後で機能しなくなり、ウィジェットセットが再度コンパイルされることはありませんでした。コンパイルは、ジャクソンが見つからないことを報告して失敗します:
:vaadinPluginVersionCheck SKIPPED
:compileJava
:vaadinUpdateWidgetset
:processResources UP-TO-DATE
:classes
:vaadinClassPathJar UP-TO-DATE
:vaadinCompile
Errors in 'org/vaadin/addon/leaflet/shared/Point.java'
Line 37: JsonValue cannot be resolved to a type
Line 3: The import com.fasterxml cannot be resolved
Aborting compile due to errors in some input files
FAILED
gradle 依存関係セクションの関連セクションは次のとおりです。
compile 'com.fasterxml.jackson.core:jackson-core:2.9.7'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.9.7'
vaadinCompile 'org.peimari:g-leaflet:+' //For v-leaflet
compile 'org.vaadin.addon:v-leaflet:+' //For map fields
私はすでにvaadinCompile、compile、およびそれらすべての実装を使用してみました。