Tuesday, November 13, 2018

Re: Compilation issue on GWT 2.8.2 (modular maven project)



On 13 Nov 2018, at 10:58, Thomas Broyer <t.broyer@gmail.com> wrote:

  • remove scope=provided and classifier=sources from test-shared
  • remove the jaxb dependency from test-server
  • possibly add the jaxb dependency with classifier=sources in test-client


  • Thanks Thomas, it works (with this changes):

    • Added jaxb as dependency in the shared project as:

        <dependency>
          <groupId>javax.xml.bind</groupId>
          <artifactId>jaxb-api</artifactId>
          <version>2.3.0</version>
        </dependency>

    • Added jaxb as dependency in the client project as:

        <dependency>
          <groupId>javax.xml.bind</groupId>
          <artifactId>jaxb-api</artifactId>
          <version>2.3.0</version>
          <classifier>sources</classifier>
        </dependency>


    • I keep the dependency on the server side, but I will try to remove it with the real project to see if then passes all the tests!

    Thanks for the help!!!

    No comments:

    Post a Comment