Changeset: fa7a8c7e896b for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=fa7a8c7e896b Modified Files: java/ChangeLog.Dec2011 java/build.xml java/tests/build.xml Branch: Dec2011 Log Message:
JDBC: change naming scheme to something more standard As noted in bug #2943, we use a rather unusal naming scheme for our JDBC driver. It was based on what the PostgreSQL folks did. With the change from a JDBCv3 to a JDBCv4 driver, we bumped the major version, and also take the opportunity to change the naming scheme into something more common: monetdb-jdbc-2.0.jar. diffs (47 lines): diff --git a/java/ChangeLog.Dec2011 b/java/ChangeLog.Dec2011 --- a/java/ChangeLog.Dec2011 +++ b/java/ChangeLog.Dec2011 @@ -1,9 +1,13 @@ # ChangeLog file for java # This file is updated with Maddlog +* Thu Dec 8 2011 Fabian Groffen <[email protected]> +- Changed version scheme of JDBC driver and MCL jar to be more standard, + from monetdb-X.Y-<thing>.jar to monetdb-<thing>-X.Y.jar, bug #2943 + * Fri Oct 14 2011 Fabian Groffen <[email protected]> - The embedded monet instance capability of MonetConnection was removed. -- Bump JDBC version to 2.0 (Liberica). JDBC now implements JDBC4 which +- Bump JDBC version to 2.0 (Liberica). JDBC now implements JDBCv4 which makes it possible to be built with Java 6 and up. Java 5 and before are no longer supported, and can use the 1.x releases of the driver. diff --git a/java/build.xml b/java/build.xml --- a/java/build.xml +++ b/java/build.xml @@ -45,11 +45,11 @@ All Rights Reserved. <property file="build.properties" /> <property name="jdbc-jar" - value="${jardir}/monetdb-${JDBC_MAJOR}.${JDBC_MINOR}-jdbc.jar" /> + value="${jardir}/monetdb-jdbc-${JDBC_MAJOR}.${JDBC_MINOR}.jar" /> <property name="jdbcclient-jar" value="${jardir}/jdbcclient.jar" /> <property name="mcl-jar" - value="${jardir}/monetdb-${MCL_MAJOR}.${MCL_MINOR}-mcl.jar" /> + value="${jardir}/monetdb-mcl-${MCL_MAJOR}.${MCL_MINOR}.jar" /> <property name="mero-control-jar" value="${jardir}/merocontrol.jar" /> diff --git a/java/tests/build.xml b/java/tests/build.xml --- a/java/tests/build.xml +++ b/java/tests/build.xml @@ -37,7 +37,7 @@ All Rights Reserved. <property name="builddir" value="build" /> <property name="jardir" value="../jars" /> <property name="jdbc_jar" - value="${jardir}/monetdb-${JDBC_MAJOR}.${JDBC_MINOR}-jdbc.jar" /> + value="${jardir}/monetdb-jdbc-${JDBC_MAJOR}.${JDBC_MINOR}.jar" /> <property name="jdbc_url" value="jdbc:monetdb://localhost/?user=monetdb&password=monetdb${debug}" /> <property name="jdbctests-jar" _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
