You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ke...@apache.org on 2007/07/20 12:11:00 UTC

svn commit: r557949 - in /incubator/tuscany/java/sdo: distribution/src/main/release/bin/LICENSE distribution/src/main/release/bin/samples/runsamples.bat distribution/src/main/release/bin/samples/runsamples.sh impl/pom.xml

Author: kelvingoodson
Date: Fri Jul 20 03:10:56 2007
New Revision: 557949

URL: http://svn.apache.org/viewvc?view=rev&rev=557949
Log:
after introduction of the change summary sample,  command line execution of the sample was failing with ....
Exception in thread "main" javax.xml.stream.FactoryConfigurationError: Provider com.bea.xml.stream.XMLOutputFactoryBase
not found
This is because this is the default implementation when no other is provided by the environment
the issue was that the woodstox dependency was still specified as a test scope dependency
also add woodstox to license file

Modified:
    incubator/tuscany/java/sdo/distribution/src/main/release/bin/LICENSE
    incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.bat
    incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.sh
    incubator/tuscany/java/sdo/impl/pom.xml

Modified: incubator/tuscany/java/sdo/distribution/src/main/release/bin/LICENSE
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/distribution/src/main/release/bin/LICENSE?view=diff&rev=557949&r1=557948&r2=557949
==============================================================================
--- incubator/tuscany/java/sdo/distribution/src/main/release/bin/LICENSE (original)
+++ incubator/tuscany/java/sdo/distribution/src/main/release/bin/LICENSE Fri Jul 20 03:10:56 2007
@@ -342,8 +342,8 @@
 
 =======================================================================================================================
 
-For the StAX component (stax-api-1.0.1.jar)
+For the StAX components (stax-api-1.0.1.jar and wstx-asl-3.2.0.jar)
 
-This component is covered by the Apache License Version 2.0, January 2004, as above.
+These components are covered by the Apache License Version 2.0, January 2004, as above.
 
 

Modified: incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.bat
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.bat?view=diff&rev=557949&r1=557948&r2=557949
==============================================================================
--- incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.bat (original)
+++ incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.bat Fri Jul 20 03:10:56 2007
@@ -22,5 +22,5 @@
 echo edit the BINARY_BASE variable in the script to point to the location
 echo where you unpacked the Tuscany SDO binary distribution
 set LIB=%BINARY_BASE%\lib
-set CLASSPATH=%LIB%\sample-sdo-%RELEASE%.jar;%LIB%\sdo-api-r2.1-%RELEASE%.jar;%LIB%\tuscany-sdo-lib-%RELEASE%.jar;%LIB%\tuscany-sdo-impl-%RELEASE%.jar;%LIB%\tuscany-sdo-tools-%RELEASE%.jar;%LIB%\codegen-ecore-2.2.3.jar;%LIB%\codegen-2.2.3.jar;%LIB%\ecore-2.2.3.jar;%LIB%\ecore-change-2.2.3.jar;%LIB%\ecore-xmi-2.2.3.jar;%LIB%\common-2.2.3.jar;%LIB%\xsd-2.2.3.jar;%LIB%\stax-api-1.0.1.jar
+set CLASSPATH=%LIB%\sample-sdo-%RELEASE%.jar;%LIB%\sdo-api-r2.1-%RELEASE%.jar;%LIB%\tuscany-sdo-lib-%RELEASE%.jar;%LIB%\tuscany-sdo-impl-%RELEASE%.jar;%LIB%\tuscany-sdo-tools-%RELEASE%.jar;%LIB%\codegen-ecore-2.2.3.jar;%LIB%\codegen-2.2.3.jar;%LIB%\ecore-2.2.3.jar;%LIB%\ecore-change-2.2.3.jar;%LIB%\ecore-xmi-2.2.3.jar;%LIB%\common-2.2.3.jar;%LIB%\xsd-2.2.3.jar;%LIB%\stax-api-1.0.1.jar;%LIB%\wstx-asl-3.2.0.jar
 java org.apache.tuscany.samples.sdo.ExecuteSamples

Modified: incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.sh
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.sh?view=diff&rev=557949&r1=557948&r2=557949
==============================================================================
--- incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.sh (original)
+++ incubator/tuscany/java/sdo/distribution/src/main/release/bin/samples/runsamples.sh Fri Jul 20 03:10:56 2007
@@ -18,5 +18,5 @@
 export BINARY_BASE=change this value to be a valid path to your binary distribution root
 export RELEASE=${sdo.version}
 export LIB=$BINARY_BASE/lib
-export CLASSPATH=$LIB/sample-sdo-$RELEASE.jar;$LIB/sdo-api-r2.1-$RELEASE.jar;$LIB/tuscany-sdo-lib-$RELEASE.jar;$LIB/tuscany-sdo-impl-$RELEASE.jar;$LIB/tuscany-sdo-tools-$RELEASE.jar;$LIB/codegen-ecore-2.2.3.jar;$LIB/codegen-2.2.3.jar;$LIB/ecore-2.2.3.jar;$LIB/ecore-change-2.2.3.jar;$LIB/ecore-xmi-2.2.3.jar;$LIB/common-2.2.3.jar;$LIB/xsd-2.2.3.jar;$LIB/stax-api-1.0.1.jar
+export CLASSPATH=$LIB/sample-sdo-$RELEASE.jar;$LIB/sdo-api-r2.1-$RELEASE.jar;$LIB/tuscany-sdo-lib-$RELEASE.jar;$LIB/tuscany-sdo-impl-$RELEASE.jar;$LIB/tuscany-sdo-tools-$RELEASE.jar;$LIB/codegen-ecore-2.2.3.jar;$LIB/codegen-2.2.3.jar;$LIB/ecore-2.2.3.jar;$LIB/ecore-change-2.2.3.jar;$LIB/ecore-xmi-2.2.3.jar;$LIB/common-2.2.3.jar;$LIB/xsd-2.2.3.jar;$LIB/stax-api-1.0.1.jar;$LIB/wstx-asl-3.2.0.jar
 java org.apache.tuscany.samples.sdo.ExecuteSamples

Modified: incubator/tuscany/java/sdo/impl/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/impl/pom.xml?view=diff&rev=557949&r1=557948&r2=557949
==============================================================================
--- incubator/tuscany/java/sdo/impl/pom.xml (original)
+++ incubator/tuscany/java/sdo/impl/pom.xml Fri Jul 20 03:10:56 2007
@@ -90,18 +90,18 @@
             <artifactId>stax-api</artifactId>
             <version>1.0.1</version>
         </dependency>
+        <dependency>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>wstx-asl</artifactId>
+            <version>3.2.0</version>
+        </dependency>
 
        <!-- dependencies for test cases -->
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.codehaus.woodstox</groupId>
-            <artifactId>wstx-asl</artifactId>
-            <version>3.2.0</version>
-            <scope>test</scope>
-        </dependency>
+
     </dependencies>
 
     <build>



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