Skip to content

Commit

Permalink
Merge pull request #38 from binarytrails/gson-serialization
Browse files Browse the repository at this point in the history
ant: add gson lib
  • Loading branch information
binarytrails authored Mar 1, 2020
2 parents 08e282f + aefd0e0 commit c0cb595
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="lib" path="lib/gson-2.8.6.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
5 changes: 4 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@
<path id="classpath.test">
<pathelement location="lib/junit-4.12.0.jar"/>
<pathelement location="lib/org.hamcrest.core_1.3.0.jar"/>
<pathelement location="lib/gson-2.8.6.jar"/>
<pathelement location="${main.build.dir}"/>
</path>

<target name="compile">
<mkdir dir="${main.build.dir}"/>
<javac srcdir="${main.src.dir}" destdir="${main.build.dir}" includeantruntime="false"/>
<javac srcdir="${main.src.dir}" destdir="${main.build.dir}" includeantruntime="false">
<classpath refid="classpath.test"/>
</javac>
</target>

<target name="test-compile" depends="compile">
Expand Down
Binary file added lib/gson-2.8.6.jar
Binary file not shown.

0 comments on commit c0cb595

Please sign in to comment.