Can't compile vaadin widgetset using gradle and V-Leaflet












2















I have a spring-vaadin project using vaadin addons and a gradle configuration.
Adding V-Leaflet to my project worked the first time, but later it broke and the widgetset never compiled again. The compilation fails reporting it can't find jackson:



: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


Here is the relevant section in the gradle dependencies section:



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


I have already tried using vaadinCompile, compile and implementation for all of them.










share|improve this question























  • One possibility is that you have two different versions of Jackson in your class path, and hence class loader cannot determine which JsonValue to use. Typically I am checking the dependency tree in this kind of case and excluding the unwanted transitive dependency, see discuss.gradle.org/t/…

    – Tatu Lund
    Nov 25 '18 at 8:04











  • I have tested that but there is no conflict with the available jackson. The vaading gradle plugin developer tried to help me also, with: Have you tried adding the addon on the vaadidnCompile classpath? So it would look like this. // Add addon + its transitive dependencies to GWT compile classpath vaadinCompile 'org.vaadin.addon:v-leaflet:+' // Add addon + its transitive dependencies to Java compile classpath compile 'org.vaadin.addon:v-leaflet:+' But it didn't work.

    – Lucas Montenegro Carvalhaes
    Nov 29 '18 at 21:16


















2















I have a spring-vaadin project using vaadin addons and a gradle configuration.
Adding V-Leaflet to my project worked the first time, but later it broke and the widgetset never compiled again. The compilation fails reporting it can't find jackson:



: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


Here is the relevant section in the gradle dependencies section:



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


I have already tried using vaadinCompile, compile and implementation for all of them.










share|improve this question























  • One possibility is that you have two different versions of Jackson in your class path, and hence class loader cannot determine which JsonValue to use. Typically I am checking the dependency tree in this kind of case and excluding the unwanted transitive dependency, see discuss.gradle.org/t/…

    – Tatu Lund
    Nov 25 '18 at 8:04











  • I have tested that but there is no conflict with the available jackson. The vaading gradle plugin developer tried to help me also, with: Have you tried adding the addon on the vaadidnCompile classpath? So it would look like this. // Add addon + its transitive dependencies to GWT compile classpath vaadinCompile 'org.vaadin.addon:v-leaflet:+' // Add addon + its transitive dependencies to Java compile classpath compile 'org.vaadin.addon:v-leaflet:+' But it didn't work.

    – Lucas Montenegro Carvalhaes
    Nov 29 '18 at 21:16
















2












2








2








I have a spring-vaadin project using vaadin addons and a gradle configuration.
Adding V-Leaflet to my project worked the first time, but later it broke and the widgetset never compiled again. The compilation fails reporting it can't find jackson:



: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


Here is the relevant section in the gradle dependencies section:



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


I have already tried using vaadinCompile, compile and implementation for all of them.










share|improve this question














I have a spring-vaadin project using vaadin addons and a gradle configuration.
Adding V-Leaflet to my project worked the first time, but later it broke and the widgetset never compiled again. The compilation fails reporting it can't find jackson:



: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


Here is the relevant section in the gradle dependencies section:



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


I have already tried using vaadinCompile, compile and implementation for all of them.







gradle build.gradle vaadin vaadin8 vaadin4spring






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 20:54









Lucas Montenegro CarvalhaesLucas Montenegro Carvalhaes

120110




120110













  • One possibility is that you have two different versions of Jackson in your class path, and hence class loader cannot determine which JsonValue to use. Typically I am checking the dependency tree in this kind of case and excluding the unwanted transitive dependency, see discuss.gradle.org/t/…

    – Tatu Lund
    Nov 25 '18 at 8:04











  • I have tested that but there is no conflict with the available jackson. The vaading gradle plugin developer tried to help me also, with: Have you tried adding the addon on the vaadidnCompile classpath? So it would look like this. // Add addon + its transitive dependencies to GWT compile classpath vaadinCompile 'org.vaadin.addon:v-leaflet:+' // Add addon + its transitive dependencies to Java compile classpath compile 'org.vaadin.addon:v-leaflet:+' But it didn't work.

    – Lucas Montenegro Carvalhaes
    Nov 29 '18 at 21:16





















  • One possibility is that you have two different versions of Jackson in your class path, and hence class loader cannot determine which JsonValue to use. Typically I am checking the dependency tree in this kind of case and excluding the unwanted transitive dependency, see discuss.gradle.org/t/…

    – Tatu Lund
    Nov 25 '18 at 8:04











  • I have tested that but there is no conflict with the available jackson. The vaading gradle plugin developer tried to help me also, with: Have you tried adding the addon on the vaadidnCompile classpath? So it would look like this. // Add addon + its transitive dependencies to GWT compile classpath vaadinCompile 'org.vaadin.addon:v-leaflet:+' // Add addon + its transitive dependencies to Java compile classpath compile 'org.vaadin.addon:v-leaflet:+' But it didn't work.

    – Lucas Montenegro Carvalhaes
    Nov 29 '18 at 21:16



















One possibility is that you have two different versions of Jackson in your class path, and hence class loader cannot determine which JsonValue to use. Typically I am checking the dependency tree in this kind of case and excluding the unwanted transitive dependency, see discuss.gradle.org/t/…

– Tatu Lund
Nov 25 '18 at 8:04





One possibility is that you have two different versions of Jackson in your class path, and hence class loader cannot determine which JsonValue to use. Typically I am checking the dependency tree in this kind of case and excluding the unwanted transitive dependency, see discuss.gradle.org/t/…

– Tatu Lund
Nov 25 '18 at 8:04













I have tested that but there is no conflict with the available jackson. The vaading gradle plugin developer tried to help me also, with: Have you tried adding the addon on the vaadidnCompile classpath? So it would look like this. // Add addon + its transitive dependencies to GWT compile classpath vaadinCompile 'org.vaadin.addon:v-leaflet:+' // Add addon + its transitive dependencies to Java compile classpath compile 'org.vaadin.addon:v-leaflet:+' But it didn't work.

– Lucas Montenegro Carvalhaes
Nov 29 '18 at 21:16







I have tested that but there is no conflict with the available jackson. The vaading gradle plugin developer tried to help me also, with: Have you tried adding the addon on the vaadidnCompile classpath? So it would look like this. // Add addon + its transitive dependencies to GWT compile classpath vaadinCompile 'org.vaadin.addon:v-leaflet:+' // Add addon + its transitive dependencies to Java compile classpath compile 'org.vaadin.addon:v-leaflet:+' But it didn't work.

– Lucas Montenegro Carvalhaes
Nov 29 '18 at 21:16














1 Answer
1






active

oldest

votes


















1














I have solved this.



I don't know exactly what happened but I solved it by updating everything and removing direct access to transitive dependencies within vaaddin compile.



The final gradle script is:



vaadinCompile 'org.vaadin.addon:v-leaflet:2.0.9'
compile 'org.vaadin.addon:v-leaflet:2.0.9'


Only adding the vaadinCompile part solved the issue for the jar and running from gradle, but I had to add the compile directive also, so that eclipse could find v-leaflet classes on the classpath.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401376%2fcant-compile-vaadin-widgetset-using-gradle-and-v-leaflet%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    I have solved this.



    I don't know exactly what happened but I solved it by updating everything and removing direct access to transitive dependencies within vaaddin compile.



    The final gradle script is:



    vaadinCompile 'org.vaadin.addon:v-leaflet:2.0.9'
    compile 'org.vaadin.addon:v-leaflet:2.0.9'


    Only adding the vaadinCompile part solved the issue for the jar and running from gradle, but I had to add the compile directive also, so that eclipse could find v-leaflet classes on the classpath.






    share|improve this answer




























      1














      I have solved this.



      I don't know exactly what happened but I solved it by updating everything and removing direct access to transitive dependencies within vaaddin compile.



      The final gradle script is:



      vaadinCompile 'org.vaadin.addon:v-leaflet:2.0.9'
      compile 'org.vaadin.addon:v-leaflet:2.0.9'


      Only adding the vaadinCompile part solved the issue for the jar and running from gradle, but I had to add the compile directive also, so that eclipse could find v-leaflet classes on the classpath.






      share|improve this answer


























        1












        1








        1







        I have solved this.



        I don't know exactly what happened but I solved it by updating everything and removing direct access to transitive dependencies within vaaddin compile.



        The final gradle script is:



        vaadinCompile 'org.vaadin.addon:v-leaflet:2.0.9'
        compile 'org.vaadin.addon:v-leaflet:2.0.9'


        Only adding the vaadinCompile part solved the issue for the jar and running from gradle, but I had to add the compile directive also, so that eclipse could find v-leaflet classes on the classpath.






        share|improve this answer













        I have solved this.



        I don't know exactly what happened but I solved it by updating everything and removing direct access to transitive dependencies within vaaddin compile.



        The final gradle script is:



        vaadinCompile 'org.vaadin.addon:v-leaflet:2.0.9'
        compile 'org.vaadin.addon:v-leaflet:2.0.9'


        Only adding the vaadinCompile part solved the issue for the jar and running from gradle, but I had to add the compile directive also, so that eclipse could find v-leaflet classes on the classpath.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 18 '18 at 17:30









        Lucas Montenegro CarvalhaesLucas Montenegro Carvalhaes

        120110




        120110
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401376%2fcant-compile-vaadin-widgetset-using-gradle-and-v-leaflet%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            鏡平學校

            ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

            Why https connections are so slow when debugging (stepping over) in Java?