<project name="CONJ-14" default="sql" basedir=".">
  <description>
    CONJ-14: Ant hangs...
  </description>

  <target name="sql-maria-broken">
    <sql userid="root" password="" url="jdbc:mysql://localhost/" driver="org.mariadb.jdbc.Driver" classpath="mariadb-client-1.0.0.jar" print="true">
use test;
    </sql>
  </target>

  <target name="sql-maria-fixed">
    <sql userid="root" password="" url="jdbc:mysql://localhost/" driver="org.mariadb.jdbc.Driver" classpath="mariadb-java-client-1.1.0.jar" print="true">
use test;
    </sql>
  </target>

  <target name="sql-mysql">
    <sql userid="root" password="" url="jdbc:mysql://localhost/" driver="com.mysql.jdbc.Driver" classpath="mysql-connector-java-5.1.13-bin.jar" print="true">
use test;
    </sql>
  </target>
</project>

