Codebase list clojure / 71a34bd6-eb9f-40f2-991f-6bf623b5b46d/upstream antsetup.sh
71a34bd6-eb9f-40f2-991f-6bf623b5b46d/upstream

Tree @71a34bd6-eb9f-40f2-991f-6bf623b5b46d/upstream (Download .tar.gz)

antsetup.sh @71a34bd6-eb9f-40f2-991f-6bf623b5b46d/upstreamraw · history · blame

1
2
3
4
5
6
7
8
#!/bin/bash

mvn -q dependency:build-classpath -Dmdep.outputFile=maven-classpath
cat <<EOF >maven-classpath.properties 
maven.compile.classpath=`cat maven-classpath`
maven.test.classpath=`cat maven-classpath`
EOF
echo "Wrote maven-classpath.properties for standalone ant use"