Skip to content

Commit

Permalink
Update to Java 8 and add streaming result
Browse files Browse the repository at this point in the history
Added JapperStreamingResult to allow for streaming of large result sets
Added option to configure fetch size
  • Loading branch information
sykesd committed Jun 8, 2016
1 parent c46baef commit ea9dedc
Show file tree
Hide file tree
Showing 4 changed files with 629 additions and 31 deletions.
6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<property name="lib" value="${basedir}/lib" />
<property name="test-lib" value="${basedir}/lib-test" />

<property name="version" value="0.7.4" />
<property name="version" value="0.8.0" />

<property name="product-jar" value="${basedir}/${ant.project.name}-${version}.jar" />
</target>
Expand Down Expand Up @@ -38,8 +38,8 @@
<target name="compile" depends="init,resolve">
<javac srcdir="${source}" destdir="${classes}"
debug="on"
source="1.6"
target="1.6"
source="1.8"
target="1.8"
includeantruntime="false"
deprecation="off">
<classpath>
Expand Down
Loading

0 comments on commit ea9dedc

Please sign in to comment.