You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by em...@apache.org on 2006/11/16 09:40:34 UTC

svn commit: r475640 - in /incubator/cxf/trunk/distribution/src/main/release/bin: wsdlvalidator wsdlvalidator.bat

Author: ema
Date: Thu Nov 16 00:40:33 2006
New Revision: 475640

URL: http://svn.apache.org/viewvc?view=rev&rev=475640
Log:
Removed schema files directory in wsdlvalidator launch script.

Modified:
    incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator
    incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator.bat

Modified: incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator?view=diff&rev=475640&r1=475639&r2=475640
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator (original)
+++ incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator Thu Nov 16 00:40:33 2006
@@ -55,11 +55,9 @@
 
 log_config=$cxf_home/etc/logging.properties
 
-cxf_schema_dir=$cxf_home/resources/schemas/wsdl
-
 cxf_classpath=${cxf_jar}:${CLASSPATH}:${sun_tool_path}
 
-$JAVA_HOME/bin/java -cp ${cxf_classpath} -Djava.util.logging.config.file=$log_config  org.apache.cxf.tools.validator.WSDLValidator -d $cxf_schema_dir "$@"
+$JAVA_HOME/bin/java -cp ${cxf_classpath} -Djava.util.logging.config.file=$log_config  org.apache.cxf.tools.validator.WSDLValidator "$@"
 
 
 

Modified: incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator.bat
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator.bat?view=diff&rev=475640&r1=475639&r2=475640
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator.bat (original)
+++ incubator/cxf/trunk/distribution/src/main/release/bin/wsdlvalidator.bat Thu Nov 16 00:40:33 2006
@@ -35,9 +35,7 @@
 
 set CXF_JAR=%CXF_HOME%\lib\cxf-incubator.jar
 
-set CXF_SCHEMA_DIR=%CXF_HOME%\resources\schemas\wsdl
-
-"%JAVA_HOME%\bin\java" -cp "%CXF_JAR%;%SUN_TOOL_PATH%;%CLASSPATH%" -Djava.util.logging.config.file="%CXF_HOME%\etc\logging.properties" org.apache.cxf.tools.validator.WSDLValidator -d "%CXF_SCHEMA_DIR%" %*
+"%JAVA_HOME%\bin\java" -cp "%CXF_JAR%;%SUN_TOOL_PATH%;%CLASSPATH%" -Djava.util.logging.config.file="%CXF_HOME%\etc\logging.properties" org.apache.cxf.tools.validator.WSDLValidator %*
 
 @endlocal