Hello Werner 

Thanks so much for your support!!!

BTW I used these two maven dependencies (old version)

<!-- Castor -->
<dependency>
    <groupId>org.codehaus.castor</groupId>
    <artifactId>castor</artifactId>
    <version>1.2</version>
</dependency>
<!-- Castor - Xerces -->
<dependency>
    <groupId>xerces</groupId>
    <artifactId>xercesImpl</artifactId>
    <version>2.9.1</version>
</dependency>
Well I needed the first dependency, 'Core' which is obvious the reason and 
'Xerces' because I needed this package 
'org.exolab.castor.xml.XercesSerializer', otherwise I got an exception if I 
only work with 'Core'

Now with the follow

<dependency>
    <groupId>org.codehaus.castor</groupId>
    <artifactId>castor-xml</artifactId>
    <version>1.3.2</version>
</dependency>
This dependency replace the two previous dependencies shown above and I got
the same 'org.exolab.castor.xml.XercesSerializer' package required which was 
included with 'xerces', the second dependency.

But I am confused, how I am getting these core packages only with 'castor-xml'?

org.castor.core
org.castor.core.exceptions
org.castor.core.util

where these three core dependencies appear on 
http://mvnrepository.com/artifact/org.codehaus.castor/castor/1.2
and not on
http://mvnrepository.com/artifact/org.codehaus.castor/castor-xml/1.3.2

I am confused

Thanks in advanced

---------------------------------------------------------------------------
Manuel Jordan Elera 

Blog
LinkedIn
Senior Member Spring Community Forums

Technical Reviewer of Apress - USA
Pro SpringSource dm ServerSpring Enterprise Recipes: A Problem-Solution 
ApproachSpring Recipes: A Problem-Solution Approach, Second EditionPro Spring 
IntegrationPro Spring Batch



---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to