no.tsl2.nano.h5.2.5.1.source-code.antscripts.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.h5 Show documentation
Show all versions of tsl2.nano.h5 Show documentation
TSL2 Framework Html5 Extensions (WebServer, Html5Presentation, RuleCover, BeanConfigurator, LogicTable-Sheet, Expression-Descriptors for Actions, Rules, URLs, Queries)
<?xml version="1.0" encoding="UTF-8"?> <project name="beanbrowser.scripts" default="help" basedir="."> <property file="antscripts.properties" /> <target name="help" description="help overview"> <echo message="please use one of these targets: sql"/> </target> <path id="stdpath"> <fileset dir="${basedir}"> <include name="**"/> </fileset> </path> <path id="classpath"> <fileset dir="${basedir}"> <include name="**/*.jar"/> <include name="**/*.class"/> </fileset> </path> <target name="sql" description="starts sql scripts"> <sql classpathref="stdpath" encoding="Cp1252" driver="${jdbc.driver}" url="${jdbc.url}" userid="${jdbc.username}" password="${jdbc.password}" onerror="stop" autocommit="true"> <fileset dir="${dir}" includes="${includes}" /> </sql> </target> <target name="script" description="starts language scripts"> <script classpathref="classpath" language="${language}" src="${dir}/${includes}"> </script> </target> </project>