Skip to content

Commit

Permalink
Fixes unknown source problem in exception stacktraces. (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
gorkemmulayim authored and chaochenq committed Oct 8, 2018
1 parent fb2812d commit 6bde3f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<target name="compile" depends="check-java-version, init">
<mkdir dir="${build.private}" />
<javac source="1.7" target="1.7" includeantruntime="false" classpathref="classpath" srcdir="${src.dir}" destdir="${build.private}" />
<javac source="1.7" target="1.7" includeantruntime="false" classpathref="classpath" srcdir="${src.dir}" destdir="${build.private}" debug="true" />
<property name="src.agent.path" value="com/amazon/kinesis/streaming/agent" />
<copy todir="${build.private}/${src.agent.path}" failonerror="true">
<fileset dir="${src.dir}/${src.agent.path}" excludes="**/*.java" />
Expand All @@ -57,4 +57,4 @@

<target name="release" depends="clean, compile, build" />

</project>
</project>

0 comments on commit 6bde3f7

Please sign in to comment.