Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
johnspackman committed Feb 27, 2018
1 parent 202614a commit 2517064
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
10 changes: 5 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

<property name="build.compiler" value="modern" />
<property name="src.dir" value="src" />
<property name="build.dir" value="../build" />
<property name="version" value="1.0" />
<property name="build.dir" value="build" />
<property name="version" value="6.0-alpha" />
<property name="jarfile" value="${build.dir}/qso-${version}.jar" />
<property name="depsfile" value="${build.dir}/qso-${version}-deps.jar" />

<path id="classpath">
<fileset dir="other-libs" includes="*.jar" />
<fileset dir="lib" includes="*.jar" />
<fileset dir="WebContent/WEB-INF/lib" includes="*.jar" />
<fileset dir="lib" includes="*.jar" />
<fileset dir="../../../../../../../../../bin/apache-tomcat-7.0.81/lib" includes="*.jar" />
</path>

<target name="clean">
Expand Down Expand Up @@ -39,7 +40,6 @@
<target name="dist" depends="jar">
<delete file="${depsfile}" />
<jar destfile="${depsfile}">
<fileset dir="other-libs" includes="*.jar" />
<fileset dir="lib" includes="*.jar" />
</jar>
</target>
Expand Down
Binary file added lib/junit-4.12.jar
Binary file not shown.
Binary file added lib/junit-interface-0.11.jar
Binary file not shown.
3 changes: 0 additions & 3 deletions src/java/com/zenesis/qx/remote/AbstractProxyProperty.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@

import java.io.IOException;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashSet;

import org.hamcrest.core.IsAnything;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.SerializerProvider;
Expand Down

0 comments on commit 2517064

Please sign in to comment.