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>
<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>
<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!!!
--
Luca Morettoni <luca(AT)morettoni.net> | http://www.morettoni.net
http://it.linkedin.com/in/morettoni/ | http://twitter.com/morettoni
No comments:
Post a Comment