summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-08-29 09:32:21 -0400
committerJosh Suereth <joshua.suereth@gmail.com>2012-08-29 09:32:21 -0400
commitc516acd677c39b62cc2f7519714797de968b9fcb (patch)
tree59f95d68e89d3e81dabc2a0e72d3be7908afa2bd /build.xml
parente03a5b766be27a1f43c9151a611b04519a2b15df (diff)
downloadscala-c516acd677c39b62cc2f7519714797de968b9fcb.tar.gz
scala-c516acd677c39b62cc2f7519714797de968b9fcb.tar.bz2
scala-c516acd677c39b62cc2f7519714797de968b9fcb.zip
Fix crasher from bug in maven ant tasks. Yippie.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index c378bc7ad1..99b68ced84 100644
--- a/build.xml
+++ b/build.xml
@@ -281,6 +281,8 @@ INITIALISATION
<!-- Resolve maven dependencies -->
<target name="init.maven.jars" depends="init.maven.tasks">
+ <!-- This target has an issue where if the user directory does not exist, we BOMB. ugh. -->
+ <mkdir dir="${user.home}/.m2/repository"/>
<artifact:dependencies pathId="dependency.classpath" filesetId="dependency.fileset">
<!--<dependency groupId="com.typesafe" artifactId="config" version="0.4.0"/>-->
</artifact:dependencies>