I am using the ANT parameter.
build.xml
<project name="myName" default="all" basedir=".">
<taskdef name="schematron"
classname="com.schematron.ant.SchematronTask"
classpath="lib/ant-schematron-2010-04-14.jar;lib/saxon9he.jar"/>
<target name="all" description="test it">
<schematron schema="sch/test.sch" failonerror="false" debugMode="true">
<fileset dir="./xml" includes="*.xml"/>
</schematron>
</target>
</project>
debugMode = true shows an intermediate XSLT file
source
share