Changeset: 0b564ae68ac1 for monetdb-java URL: https://dev.monetdb.org/hg/monetdb-java/rev/0b564ae68ac1 Modified Files: ChangeLog build.xml Branch: default Log Message:
Removed creation and distribution of monetdb-mcl-1.##.jre8.jar file. Programmers who used this jar file should use monetdb-jdbc-3.#.jre8.jar file. diffs (41 lines): diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog file for monetdb-java # This file is updated with Maddlog +* Thu Sep 29 2022 Martin van Dinther <[email protected]> +- Removed creation and distribution of monetdb-mcl-1.##.jre8.jar file. + Programmers who used this jar file should use monetdb-jdbc-3.#.jre8.jar file. + * Wed Aug 24 2022 Martin van Dinther <[email protected]> - Improved DatabaseMetaData.getBestRowIdentifier(). When there are multiple unique constraints and no pkey for a table it used to return the columns diff --git a/build.xml b/build.xml --- a/build.xml +++ b/build.xml @@ -88,7 +88,6 @@ Copyright 1997 - July 2008 CWI, August 2 <target name="distjdbc"> <antcall target="jar_jdbc" /> - <antcall target="jar_mcl" /> <antcall target="jar_jdbcclient" /> </target> @@ -113,15 +112,6 @@ Copyright 1997 - July 2008 CWI, August 2 </jar> </target> - <target name="jar_mcl" depends="compile_mcl"> - <jar jarfile="${mcl-jar}"> - <fileset dir="${builddir}"> - <include name="${mcl-package}/**/*.class" /> - <include name="${nl-cwi-mcl-package}/net/MapiSocket.class" /> - </fileset> - </jar> - </target> - <target name="jar_client" depends="compile_util,compile_client"> <jar jarfile="${jardir}/monetdb-clients.jar"> <fileset dir="${builddir}"> _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
