Yes please.
On Saturday, 14 May 2016 2:45 AM, Romain Manni-Bucau
<[email protected]> wrote:
Makes sense, do you want to open the issue on
issues.apache.org/jira/browse/TOMEE?
Romain Manni-Bucau
@rmannibucau | Blog | Github | LinkedIn | Tomitriber | JavaEE Factory
2016-05-13 18:29 GMT+02:00 ravi sankar <[email protected]>:
Hi Team,
bval is introducing three unwanted dependencies jaxb-api, jaxb-impl, junit in
to uber jar created using maven shade.
<dependency>
<groupId>org.apache.tomee</groupId>
<artifactId>tomee-embedded</artifactId>
<version>${version.tomee}</version>
<exclusions>
<exclusion>
<artifactId>jaxb-impl</artifactId>
<groupId>com.sun.xml.bind</groupId>
</exclusion>
<exclusion>
<artifactId>jaxb-api</artifactId>
<groupId>javax.xml.bind</groupId>
</exclusion>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
</exclusions>
</dependency>
Thanks,Ravisankar Challa