You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by ce...@apache.org on 2005/09/09 02:54:48 UTC

svn commit: r279679 - in /xmlbeans/trunk: ./ bin/ docs/guide/ samples/AbstractTypes/ test/src/misc/detailed/ xkit/

Author: cezar
Date: Thu Sep  8 17:54:38 2005
New Revision: 279679

URL: http://svn.apache.org/viewcvs?rev=279679&view=rev
Log:
Contributed by Rajiv Balachandran. Changing command line scripts and documentation to reflect namechange of the new JSR173 jars

Modified:
    xmlbeans/trunk/README.txt
    xmlbeans/trunk/bin/dumpxsb
    xmlbeans/trunk/bin/dumpxsb.cmd
    xmlbeans/trunk/bin/inst2xsd
    xmlbeans/trunk/bin/inst2xsd.cmd
    xmlbeans/trunk/bin/scomp
    xmlbeans/trunk/bin/scomp.cmd
    xmlbeans/trunk/bin/scopy.cmd
    xmlbeans/trunk/bin/sdownload
    xmlbeans/trunk/bin/sdownload.cmd
    xmlbeans/trunk/bin/sfactor
    xmlbeans/trunk/bin/sfactor.cmd
    xmlbeans/trunk/bin/svalidate
    xmlbeans/trunk/bin/svalidate.cmd
    xmlbeans/trunk/bin/validate
    xmlbeans/trunk/bin/validate.cmd
    xmlbeans/trunk/bin/xpretty
    xmlbeans/trunk/bin/xpretty.cmd
    xmlbeans/trunk/bin/xsd2inst
    xmlbeans/trunk/bin/xsd2inst.cmd
    xmlbeans/trunk/bin/xsdtree
    xmlbeans/trunk/bin/xsdtree.cmd
    xmlbeans/trunk/bin/xstc
    xmlbeans/trunk/bin/xstc.cmd
    xmlbeans/trunk/docs/guide/antXmlbean.html
    xmlbeans/trunk/samples/AbstractTypes/build.xml
    xmlbeans/trunk/test/src/misc/detailed/ClassLoadingTest.java
    xmlbeans/trunk/xkit/README.txt

Modified: xmlbeans/trunk/README.txt
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/README.txt?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/README.txt (original)
+++ xmlbeans/trunk/README.txt Thu Sep  8 17:54:38 2005
@@ -43,7 +43,7 @@
 ./test/docs/*                       for running tests
 
 XmlBeans depends on the following external libraries:
-- jsr173_api.jar
+- jsr173_1.0_api.jar
 - jam-0.1.0-src.jar [http://annogen.codehaus.org/JAM] for the extension
   feature using plain .java files
 - tools.jar (O) from the JDK, dependency of jam-0.1.0-src

Modified: xmlbeans/trunk/bin/dumpxsb
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/dumpxsb?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/dumpxsb (original)
+++ xmlbeans/trunk/bin/dumpxsb Thu Sep  8 17:54:38 2005
@@ -1,33 +1,33 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-#XSB file dumper
-#Prints the contents of an xsb file in human-readmble form
-
-echo `dirname $0`
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -classpath $cp org.apache.xmlbeans.impl.tool.XsbDumper $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+#XSB file dumper
+#Prints the contents of an xsb file in human-readmble form
+
+echo `dirname $0`
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -classpath $cp org.apache.xmlbeans.impl.tool.XsbDumper $*

Modified: xmlbeans/trunk/bin/dumpxsb.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/dumpxsb.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/dumpxsb.cmd (original)
+++ xmlbeans/trunk/bin/dumpxsb.cmd Thu Sep  8 17:54:38 2005
@@ -23,7 +23,7 @@
 if "%XMLBEANS_LIB%" EQU "" call %~dp0_setlib
 
 set cp=
-set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.XsbDumper %*
 

Modified: xmlbeans/trunk/bin/inst2xsd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/inst2xsd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/inst2xsd (original)
+++ xmlbeans/trunk/bin/inst2xsd Thu Sep  8 17:54:38 2005
@@ -1,31 +1,31 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-#Instance to Schema tool
-#Builds xsd files from xml instance files.
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -classpath $cp org.apache.xmlbeans.impl.inst2xsd.Inst2Xsd $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+#Instance to Schema tool
+#Builds xsd files from xml instance files.
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -classpath $cp org.apache.xmlbeans.impl.inst2xsd.Inst2Xsd $*

Modified: xmlbeans/trunk/bin/inst2xsd.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/inst2xsd.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/inst2xsd.cmd (original)
+++ xmlbeans/trunk/bin/inst2xsd.cmd Thu Sep  8 17:54:38 2005
@@ -25,7 +25,7 @@
 
 set cp=
 set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 set cp=%cp%;%XMLBEANS_LIB%\resolver.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.inst2xsd.Inst2Xsd %*

Modified: xmlbeans/trunk/bin/scomp
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/scomp?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/scomp (original)
+++ xmlbeans/trunk/bin/scomp Thu Sep  8 17:54:38 2005
@@ -1,31 +1,31 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-#Schema compiler
-#Builds XBean types from xsd files.
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar:$JAVA_HOME/lib/tools.jar:$XMLBEANS_LIB/resolver.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -Xmx256m -classpath $cp org.apache.xmlbeans.impl.tool.SchemaCompiler $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+#Schema compiler
+#Builds XBean types from xsd files.
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar:$JAVA_HOME/lib/tools.jar:$XMLBEANS_LIB/resolver.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -Xmx256m -classpath $cp org.apache.xmlbeans.impl.tool.SchemaCompiler $*

Modified: xmlbeans/trunk/bin/scomp.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/scomp.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/scomp.cmd (original)
+++ xmlbeans/trunk/bin/scomp.cmd Thu Sep  8 17:54:38 2005
@@ -25,7 +25,7 @@
 
 set cp=
 set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 set cp=%cp%;%JAVA_HOME%\lib\tools.jar
 set cp=%cp%;%XMLBEANS_LIB%\resolver.jar
 

Modified: xmlbeans/trunk/bin/scopy.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/scopy.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/scopy.cmd (original)
+++ xmlbeans/trunk/bin/scopy.cmd Thu Sep  8 17:54:38 2005
@@ -24,7 +24,7 @@
 if "%XMLBEANS_LIB%" EQU "" call %~dp0_setlib
 
 set cp=
-set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaCopy %*
 

Modified: xmlbeans/trunk/bin/sdownload
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/sdownload?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/sdownload (original)
+++ xmlbeans/trunk/bin/sdownload Thu Sep  8 17:54:38 2005
@@ -1,31 +1,31 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-#Schema downloader
-#Tool to download Schema files
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -classpath $cp org.apache.xmlbeans.impl.tool.SchemaResourceManager $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+#Schema downloader
+#Tool to download Schema files
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -classpath $cp org.apache.xmlbeans.impl.tool.SchemaResourceManager $*

Modified: xmlbeans/trunk/bin/sdownload.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/sdownload.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/sdownload.cmd (original)
+++ xmlbeans/trunk/bin/sdownload.cmd Thu Sep  8 17:54:38 2005
@@ -25,7 +25,7 @@
 
 set cp=
 set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 set cp=%cp%;%XMLBEANS_LIB%\resolver.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaResourceManager %*

Modified: xmlbeans/trunk/bin/sfactor
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/sfactor?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/sfactor (original)
+++ xmlbeans/trunk/bin/sfactor Thu Sep  8 17:54:38 2005
@@ -1,34 +1,34 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-## Schema Factoring tool
-##
-## Factors redundant definitions out of a set of schemas and 
-## uses imports instead.
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar:$XMLBEANS_LIB/resolver.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -Xmx256m -classpath $cp org.apache.xmlbeans.impl.tool.FactorImports $*
-
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+## Schema Factoring tool
+##
+## Factors redundant definitions out of a set of schemas and 
+## uses imports instead.
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar:$XMLBEANS_LIB/resolver.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -Xmx256m -classpath $cp org.apache.xmlbeans.impl.tool.FactorImports $*
+

Modified: xmlbeans/trunk/bin/sfactor.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/sfactor.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/sfactor.cmd (original)
+++ xmlbeans/trunk/bin/sfactor.cmd Thu Sep  8 17:54:38 2005
@@ -24,7 +24,7 @@
 if "%XMLBEANS_LIB%" EQU "" call %~dp0_setlib
 
 set cp=
-set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_api.jar;%XMLBEANS_LIB%\resolver.jar;
+set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_1.0_api.jar;%XMLBEANS_LIB%\resolver.jar;
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.FactorImports %*
 

Modified: xmlbeans/trunk/bin/svalidate
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/svalidate?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/svalidate (original)
+++ xmlbeans/trunk/bin/svalidate Thu Sep  8 17:54:38 2005
@@ -1,32 +1,32 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-#
-# Streaming Instance Validator
-#
-# Validates an instance against a schema.
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar:$XMLBEANS_LIB/jsr173_ri.jar
-
-case "`uname`" in
-    CYGWIN*)
-        CP=`cygpath -w -p $CP`
-        ;;
-esac
-
-java -classpath $CP org.apache.xmlbeans.impl.tool.StreamInstanceValidator $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+#
+# Streaming Instance Validator
+#
+# Validates an instance against a schema.
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar:$XMLBEANS_LIB/jsr173_1.0_ri.jar
+
+case "`uname`" in
+    CYGWIN*)
+        CP=`cygpath -w -p $CP`
+        ;;
+esac
+
+java -classpath $CP org.apache.xmlbeans.impl.tool.StreamInstanceValidator $*

Modified: xmlbeans/trunk/bin/svalidate.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/svalidate.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/svalidate.cmd (original)
+++ xmlbeans/trunk/bin/svalidate.cmd Thu Sep  8 17:54:38 2005
@@ -25,8 +25,8 @@
 
 set cp=
 set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_api.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_ri.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_ri.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.StreamInstanceValidator %*
 

Modified: xmlbeans/trunk/bin/validate
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/validate?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/validate (original)
+++ xmlbeans/trunk/bin/validate Thu Sep  8 17:54:38 2005
@@ -1,32 +1,32 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-#
-# Instance Validator
-#
-# Validates an instance against a schema.
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-CP=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
-
-case "`uname`" in
-    CYGWIN*)
-        CP=`cygpath -w -p $CP`
-        ;;
-esac
-
-exec java -classpath $CP org.apache.xmlbeans.impl.tool.InstanceValidator $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+#
+# Instance Validator
+#
+# Validates an instance against a schema.
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+CP=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        CP=`cygpath -w -p $CP`
+        ;;
+esac
+
+exec java -classpath $CP org.apache.xmlbeans.impl.tool.InstanceValidator $*

Modified: xmlbeans/trunk/bin/validate.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/validate.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/validate.cmd (original)
+++ xmlbeans/trunk/bin/validate.cmd Thu Sep  8 17:54:38 2005
@@ -25,7 +25,7 @@
 
 set cp=
 set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.InstanceValidator %*
 

Modified: xmlbeans/trunk/bin/xpretty
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xpretty?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xpretty (original)
+++ xmlbeans/trunk/bin/xpretty Thu Sep  8 17:54:38 2005
@@ -1,30 +1,30 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-#Invokes pretty printer
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -classpath $cp org.apache.xmlbeans.impl.tool.PrettyPrinter $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+#Invokes pretty printer
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -classpath $cp org.apache.xmlbeans.impl.tool.PrettyPrinter $*

Modified: xmlbeans/trunk/bin/xpretty.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xpretty.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xpretty.cmd (original)
+++ xmlbeans/trunk/bin/xpretty.cmd Thu Sep  8 17:54:38 2005
@@ -22,6 +22,6 @@
 if "%XMLBEANS_LIB%" EQU "" call %~dp0_setlib
 
 set cp=
-set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.PrettyPrinter %*

Modified: xmlbeans/trunk/bin/xsd2inst
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xsd2inst?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xsd2inst (original)
+++ xmlbeans/trunk/bin/xsd2inst Thu Sep  8 17:54:38 2005
@@ -1,30 +1,30 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-#Schema to instance tool
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -classpath $cp org.apache.xmlbeans.impl.xsd2inst.SchemaInstanceGenerator $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+#Schema to instance tool
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -classpath $cp org.apache.xmlbeans.impl.xsd2inst.SchemaInstanceGenerator $*

Modified: xmlbeans/trunk/bin/xsd2inst.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xsd2inst.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xsd2inst.cmd (original)
+++ xmlbeans/trunk/bin/xsd2inst.cmd Thu Sep  8 17:54:38 2005
@@ -1,31 +1,31 @@
-@REM
-@REM  Copyright 2004 The Apache Software Foundation
-@REM
-@REM  Licensed under the Apache License, Version 2.0 (the "License");
-@REM  you may not use this file except in compliance with the License.
-@REM  You may obtain a copy of the License at
-@REM
-@REM      http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM  Unless required by applicable law or agreed to in writing, software
-@REM  distributed under the License is distributed on an "AS IS" BASIS,
-@REM  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@REM  See the License for the specific language governing permissions and
-@REM  limitations under the License.
-@REM
-
-@rem Schema to instance tool
-@rem
-
-@echo off
-
-setlocal
-if "%XMLBEANS_LIB%" EQU "" call %~dp0_setlib
-
-set cp=
-set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_api.jar
-
-java -classpath %cp% org.apache.xmlbeans.impl.xsd2inst.SchemaInstanceGenerator %*
-
-:done
+@REM
+@REM  Copyright 2004 The Apache Software Foundation
+@REM
+@REM  Licensed under the Apache License, Version 2.0 (the "License");
+@REM  you may not use this file except in compliance with the License.
+@REM  You may obtain a copy of the License at
+@REM
+@REM      http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM  Unless required by applicable law or agreed to in writing, software
+@REM  distributed under the License is distributed on an "AS IS" BASIS,
+@REM  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@REM  See the License for the specific language governing permissions and
+@REM  limitations under the License.
+@REM
+
+@rem Schema to instance tool
+@rem
+
+@echo off
+
+setlocal
+if "%XMLBEANS_LIB%" EQU "" call %~dp0_setlib
+
+set cp=
+set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_api.jar
+
+java -classpath %cp% org.apache.xmlbeans.impl.xsd2inst.SchemaInstanceGenerator %*
+
+:done

Modified: xmlbeans/trunk/bin/xsdtree
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xsdtree?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xsdtree (original)
+++ xmlbeans/trunk/bin/xsdtree Thu Sep  8 17:54:38 2005
@@ -1,30 +1,30 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-# Invokes type hierarchy printer
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -Xmx256m -classpath $cp org.apache.xmlbeans.impl.tool.TypeHierarchyPrinter $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+# Invokes type hierarchy printer
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -Xmx256m -classpath $cp org.apache.xmlbeans.impl.tool.TypeHierarchyPrinter $*

Modified: xmlbeans/trunk/bin/xsdtree.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xsdtree.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xsdtree.cmd (original)
+++ xmlbeans/trunk/bin/xsdtree.cmd Thu Sep  8 17:54:38 2005
@@ -22,6 +22,6 @@
 if "%XMLBEANS_LIB%" EQU "" call %~dp0_setlib
 
 set cp=
-set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_api.jar;
+set cp=%cp%;%XMLBEANS_LIB%\xbean.jar;%XMLBEANS_LIB%\jsr173_1.0_api.jar;
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.TypeHierarchyPrinter %*

Modified: xmlbeans/trunk/bin/xstc
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xstc?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xstc (original)
+++ xmlbeans/trunk/bin/xstc Thu Sep  8 17:54:38 2005
@@ -1,30 +1,30 @@
-#!/bin/sh
-##
-##  Copyright 2004 The Apache Software Foundation
-##
-##  Licensed under the Apache License, Version 2.0 (the "License");
-##  you may not use this file except in compliance with the License.
-##  You may obtain a copy of the License at
-##
-##      http://www.apache.org/licenses/LICENSE-2.0
-##
-##  Unless required by applicable law or agreed to in writing, software
-##  distributed under the License is distributed on an "AS IS" BASIS,
-##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-##  See the License for the specific language governing permissions and
-##  limitations under the License.
-##
-
-# Invokes XSTC
-
-if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
-
-cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_api.jar:$XMLBEANS_LIB/resolver.jar
-
-case "`uname`" in
-    CYGWIN*)
-        cp=`cygpath -w -p $cp`
-        ;;
-esac
-
-java -classpath $cp org.apache.xmlbeans.impl.tool.XSTCTester $*
+#!/bin/sh
+##
+##  Copyright 2004 The Apache Software Foundation
+##
+##  Licensed under the Apache License, Version 2.0 (the "License");
+##  you may not use this file except in compliance with the License.
+##  You may obtain a copy of the License at
+##
+##      http://www.apache.org/licenses/LICENSE-2.0
+##
+##  Unless required by applicable law or agreed to in writing, software
+##  distributed under the License is distributed on an "AS IS" BASIS,
+##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+##  See the License for the specific language governing permissions and
+##  limitations under the License.
+##
+
+# Invokes XSTC
+
+if [ -z $XMLBEANS_LIB ]; then . `dirname $0`/_setlib; fi
+
+cp=$XMLBEANS_LIB/xbean.jar:$XMLBEANS_LIB/jsr173_1.0_api.jar:$XMLBEANS_LIB/resolver.jar
+
+case "`uname`" in
+    CYGWIN*)
+        cp=`cygpath -w -p $cp`
+        ;;
+esac
+
+java -classpath $cp org.apache.xmlbeans.impl.tool.XSTCTester $*

Modified: xmlbeans/trunk/bin/xstc.cmd
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/bin/xstc.cmd?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/bin/xstc.cmd (original)
+++ xmlbeans/trunk/bin/xstc.cmd Thu Sep  8 17:54:38 2005
@@ -23,7 +23,7 @@
 
 set cp=
 set cp=%cp%;%XMLBEANS_LIB%\xbean.jar
-set cp=%cp%;%XMLBEANS_LIB%\jsr173_api.jar
+set cp=%cp%;%XMLBEANS_LIB%\jsr173_1.0_api.jar
 set cp=%cp%;%XMLBEANS_LIB%\resolver.jar
 
 java -classpath %cp% org.apache.xmlbeans.impl.tool.XSTCTester %*

Modified: xmlbeans/trunk/docs/guide/antXmlbean.html
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/docs/guide/antXmlbean.html?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/docs/guide/antXmlbean.html (original)
+++ xmlbeans/trunk/docs/guide/antXmlbean.html Thu Sep  8 17:54:38 2005
@@ -46,7 +46,7 @@
     also generate the source code that makes up the XMLBean type system specified
     by the schema files.</p>
   <p class="notepara"><b>Note:</b> This task depends on two external libraries not
-    included in the Ant distribution: one called xbean.jar, one called jsr173_api.jar.
+    included in the Ant distribution: one called xbean.jar, one called jsr173_1.0_api.jar.
     Both can be found in the XMLBeans developer kit at <a
  href="http://xmlbeans.apache.org/" target="_blank">http://xmlbeans.apache.org/</a>.
     The build script will need to include a taskdef for xmlbean, which could look
@@ -54,7 +54,7 @@
 </div>
 <blockquote>
   <div class="notepara">
-    <pre>&lt;taskdef name="xmlbean"<br>     classname="org.apache.xmlbeans.impl.tool.XMLBean"<br>     classpath="path/to/xbean.jar:path/to/jsr173_api.jar" /&gt;</pre>
+    <pre>&lt;taskdef name="xmlbean"<br>     classname="org.apache.xmlbeans.impl.tool.XMLBean"<br>     classpath="path/to/xbean.jar:path/to/jsr173_1.0_api.jar" /&gt;</pre>
   </div>
 </blockquote>
 <div>
@@ -308,20 +308,20 @@
 </div>
 <div id=topictext> Be sure to define the task in your script, like this:</div>
 <div>
-  <pre>&lt;taskdef name="xmlbean"<br>     classname="org.apache.xmlbeans.impl.tool.XMLBean"<br>     classpath="path/to/xbean.jar:path/to/jsr173_api.jar" /&gt;</pre>
+  <pre>&lt;taskdef name="xmlbean"<br>     classname="org.apache.xmlbeans.impl.tool.XMLBean"<br>     classpath="path/to/xbean.jar:path/to/jsr173_1.0_api.jar" /&gt;</pre>
   <p>The following builds all the schemas in the schemas directory and creates
     a jar called &quot;Schemas.jar&quot;. (Note: both xbean.jar and
-    jsr173_api.jar must be on the classpath when the task executes).</p>
+    jsr173_1.0_api.jar must be on the classpath when the task executes).</p>
 </div>
 <div>
   <pre>
 &lt;xmlbean schema="schemas" destfile="Schemas.jar"
-    classpath="path/to/xbean.jar:path/to/jsr173_api.jar" /&gt;</pre>
+    classpath="path/to/xbean.jar:path/to/jsr173_1.0_api.jar" /&gt;</pre>
   The following compiles the schema &quot;ourSchema.xsd&quot; into the default
   jar &quot;xmltypes.jar&quot;. &nbsp;If &nbsp;any imports and includes are defined
   by remote URLs, they are downloaded during the build.
   <div>
-    <pre>&lt;xmlbean schema="schemas/ourSchema.xsd" download="true"<br>      classpath="path/to/xbean.jar:path/to/jsr173_api.jar" /&gt;</pre>
+    <pre>&lt;xmlbean schema="schemas/ourSchema.xsd" download="true"<br>      classpath="path/to/xbean.jar:path/to/jsr173_1.0_api.jar" /&gt;</pre>
   </div>
   <div>
     <h4>Using a fileset</h4>
@@ -333,7 +333,7 @@
     every file in the schemas directory, and compiles them. The fileset can include
     schema files that refer to previously compiled schema components.&nbsp; The
     fileset can also contain JAVA files.&nbsp; The classpath parameter defines
-    the classpath necessary to resolve compiled schema and java references (and must include xbean.jar and jsr173_api.jar).<br>
+    the classpath necessary to resolve compiled schema and java references (and must include xbean.jar and jsr173_1.0_api.jar).<br>
     <br>
     The built classes will go into ${build.dir}.</div>
   <div>

Modified: xmlbeans/trunk/samples/AbstractTypes/build.xml
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/samples/AbstractTypes/build.xml?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/samples/AbstractTypes/build.xml (original)
+++ xmlbeans/trunk/samples/AbstractTypes/build.xml Thu Sep  8 17:54:38 2005
@@ -29,7 +29,7 @@
 
         <echo message="xmlbeans.lib: ${xmlbeans.lib}"/>
         <path id="xmlbeans.classpath">
-            <fileset dir="${xmlbeans.lib}" includes="xbean.jar,jsr173_api.jar"/>
+            <fileset dir="${xmlbeans.lib}" includes="xbean.jar,jsr173_1.0_api.jar"/>
         </path>
 
         <taskdef name="scomp"

Modified: xmlbeans/trunk/test/src/misc/detailed/ClassLoadingTest.java
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/test/src/misc/detailed/ClassLoadingTest.java?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/test/src/misc/detailed/ClassLoadingTest.java (original)
+++ xmlbeans/trunk/test/src/misc/detailed/ClassLoadingTest.java Thu Sep  8 17:54:38 2005
@@ -92,11 +92,11 @@
                 if (!jsr173File.exists())
                     throw new Exception("File does not exist");
                 URL jsr173jar = new URL(jsr173File.toURL().toString());
-                File jsr173_apiFile = new File(xbean_home + "/build/lib/jsr173_api.jar");
+                File jsr173_apiFile = new File(xbean_home + "/build/lib/jsr173_1.0_api.jar");
                 if (!jsr173_apiFile.exists())
                     throw new Exception("File does not exist");
                 URL jsr173_apijar = jsr173_apiFile.toURL();
-                File jsr173_riFile = new File(xbean_home + "/build/lib/jsr173_ri.jar");
+                File jsr173_riFile = new File(xbean_home + "/build/lib/jsr173_1.0_ri.jar");
                 if (!jsr173_riFile.exists())
                     throw new Exception("File does not exist");
                 URL jsr173_rijar = jsr173_riFile.toURL();

Modified: xmlbeans/trunk/xkit/README.txt
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/xkit/README.txt?rev=279679&r1=279678&r2=279679&view=diff
==============================================================================
--- xmlbeans/trunk/xkit/README.txt (original)
+++ xmlbeans/trunk/xkit/README.txt Thu Sep  8 17:54:38 2005
@@ -25,9 +25,9 @@
     Should work on any JDK 1.4.x or 1.5.x.
     ./lib/xbean.jar
 
-(2) One copy of jsr173_api.jar, which contains classes
+(2) One copy of jsr173_1.0_api.jar, which contains classes
     needed to parse XML files for use with XMLBeans.
-    /lib/jsr173_api.jar
+    /lib/jsr173_1.0_api.jar
 
 (3) License information for XML Beans and included libraries
     ./LICENSE.txt
@@ -121,10 +121,10 @@
 
        <taskdef name="xmlbean"
            classname="org.apache.xmlbeans.impl.tool.XMLBean"
-           classpath="path/to/xbean.jar:path/to/jsr173_api.jar" />
+           classpath="path/to/xbean.jar:path/to/jsr173_1.0_api.jar" />
 
        <xmlbean schemas="easypo.xsd" destfile="myeasypo.jar"
-           classpath="path/to/xbean.jar:path/to/jsr173_api.jar" />
+           classpath="path/to/xbean.jar:path/to/jsr173_1.0_api.jar" />
 
        For more information, see docs/guide/antXmlbean.html.
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: commits-help@xmlbeans.apache.org