You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@xmlbeans.apache.org by "Blanton, Sean A" <SB...@amfam.com> on 2007/01/04 01:17:11 UTC

xmlbeans embedded source signature

Does anyone know what part of creating an xmlbeans jar file creates a 
signature in the src path of the embedded xsd files?  I have two 
xmlbeans jar files built with different methods and I am trying to
resolve the difference.


The first jar file is built using the xmlbeans Maven plugin with 
unknown options (except that -javasource 1.5 is used) and has source 
entries like: 
--------------------------------------------- 
A.jar\schemaorg_apache_xmlbeans\src\abc-entity.xsd 
--------------------------------------------- 


The second jar file is built straight from xmlbeans 2.2.0 scomp command 
( -javasource 1.5 ) 
--------------------------------------------- 
B.jar\schemaorg_apache_xmlbeans\src\URI_SHA_1_6DA2BF481DB284C5022CF2901B
CAC-92C1D430600\abc-entity.xsd 
--------------------------------------------- 
Also, since the src name is embedded in the xsb files, each xsb is 
different by the corresponding number of bytes difference between the 
two paths. Otherwise everything else is identical. 


Both builds seem to be a simple call to the schemacompiler class and 
there are very few available options to build with. Can anyone explain 
the difference and should  B.jar be different at runtime from A.jar? 


Thanks