use latest dx.jar

This commit is contained in:
Julian Dolby 2015-03-04 13:19:21 -05:00
parent 3e2af86646
commit f3a4225429
3 changed files with 3 additions and 11 deletions

View File

@ -5,7 +5,7 @@ before_install:
- "pushd /tmp"
- "git clone https://github.com/secure-software-engineering/DroidBench.git"
- "popd"
- "find /usr/local -name dx.jar"
- "find /usr/local -name dx.jar -exec cp '{}' $HOME/build/wala/WALA/com.ibm.wala.dalvik.test/lib ';'"
install: mvn clean verify -DskipTests=true -B -q
script: mvn clean verify -B -q
sudo: false

View File

@ -2,7 +2,7 @@
<classpath>
<classpathentry kind="src" path="source"/>
<classpathentry kind="src" path="data"/>
<classpathentry kind="lib" path="lib/dx-1.7.jar"/>
<classpathentry kind="lib" path="lib/dx.jar"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>

View File

@ -59,15 +59,7 @@
<available file="${plugin.destination}/data/android.jar" property="android.jar.present"/>
</target>
<target name="fetchDx" depends="dxPresent" unless="dx.present">
<get src="http://central.maven.org/maven2/com/google/android/tools/dx/1.7/dx-1.7.jar" dest="${plugin.destination}/lib/dx-1.7.jar" />
</target>
<target name="dxPresent" depends="init">
<available file="${plugin.destination}/lib/dx-1.7.jar" property="dx.present"/>
</target>
<target name="getJars" depends="fetchSampleLex,fetchSampleCup,fetchDx,fetchAndroidJar" />
<target name="getJars" depends="fetchSampleLex,fetchSampleCup,fetchAndroidJar" />
<target name="init" depends="properties">
<condition property="pluginTemp" value="${buildTempFolder}/plugins">