Codebase list clojure / 8c49643e-fcc2-4857-99e8-3ba7739fc79f/main antsetup.sh
8c49643e-fcc2-4857-99e8-3ba7739fc79f/main

Tree @8c49643e-fcc2-4857-99e8-3ba7739fc79f/main (Download .tar.gz)

antsetup.sh @8c49643e-fcc2-4857-99e8-3ba7739fc79f/mainraw · 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"