Mercurial > hg > monetdb-java
diff build.xml @ 87:2b5e32efb1a4 embedded
Made all the mappings for the MAPI connection, now it needs to be added on the Embedded connection. Changed the compilation target to 1.8 because of the timezones. Implemented some JDBC methods as well.
author | Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> |
---|---|
date | Tue, 03 Jan 2017 18:50:07 +0000 (2017-01-03) |
parents | 073ee535234b |
children | 6f74e01c57da |
line wrap: on
line diff
--- a/build.xml +++ b/build.xml @@ -18,7 +18,6 @@ Copyright 1997 - July 2008 CWI, August 2 <project name="MonetDB_Java_Drivers" default="default" basedir="."> - <!-- set global properties for this build --> <property name="srcdir" value="src/main/java" /> <property name="libdir" value="lib" /> @@ -33,17 +32,12 @@ Copyright 1997 - July 2008 CWI, August 2 <property file="build.properties" /> - <property name="jdbc-jar" - value="${jardir}/monetdb-jdbc-${JDBC_MAJOR}.${JDBC_MINOR}.jar" /> - <property name="jdbcclient-jar" - value="${jardir}/jdbcclient.jar" /> - <property name="jmonetdb-jar" - value="${jardir}/jmonetdb.jar" /> - <property name="mcl-jar" - value="${jardir}/monetdb-mcl-${MCL_MAJOR}.${MCL_MINOR}.jar" /> + <property name="jdbc-jar" value="${jardir}/monetdb-jdbc-${JDBC_MAJOR}.${JDBC_MINOR}.jar" /> + <property name="jdbcclient-jar" value="${jardir}/jdbcclient.jar" /> + <property name="jmonetdb-jar" value="${jardir}/jmonetdb.jar" /> + <property name="mcl-jar" value="${jardir}/monetdb-mcl-${MCL_MAJOR}.${MCL_MINOR}.jar" /> - <property name="mero-control-jar" - value="${jardir}/merocontrol.jar" /> + <property name="mero-control-jar" value="${jardir}/merocontrol.jar" /> <!-- @@ -56,8 +50,11 @@ Copyright 1997 - July 2008 CWI, August 2 since EOL. 2015-07-16, sjoerd@acm.org + Update Compile it to Java 8 for the simplicity of the implementation of the driver + 2017-01-03, ferreira@cwi.nl + --> - <property name="jvm.version" value="1.7" /> + <property name="jvm.version" value="1.8" /> <property name="javac.flags" value="-Xlint:-options" /> <!-- full target -->