Hello,
I work on Oracle AS with Spring, Hibernate, Shale and for each dependency which references xalan, xerces or xml-apis I have to add thi sfollowing block code:

<exclusions>
       <exclusion>
         <artifactId>xerces</artifactId>
         <groupId>xerces</groupId>
       </exclusion>
       <exclusion>
         <artifactId>dom4j</artifactId>
         <groupId>dom4j</groupId>
       </exclusion>
       <exclusion>
         <artifactId>xalan</artifactId>
         <groupId>xalan</groupId>
       </exclusion>
       <exclusion>
         <artifactId>xml-apis</artifactId>
         <groupId>xml-apis</groupId>
       </exclusion>
     </exclusions>

My question : is there a way to specify ONE TIME this exclusion for all the project ?

Thanks
Regards,
Alexandre Touret

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to