<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>ant/clean.xml</filename>
    </added>
    <added>
      <filename>ant/compile.xml</filename>
    </added>
    <added>
      <filename>ant/docs.xml</filename>
    </added>
    <added>
      <filename>ant/package.xml</filename>
    </added>
    <added>
      <filename>ant/prepare.xml</filename>
    </added>
    <added>
      <filename>ant/test.xml</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,56 +1,69 @@
 &lt;project xmlns:ivy=&quot;antlib:org.apache.ivy.ant&quot;&gt;
 
-    &lt;!-- defaults for all projects --&gt;
-    &lt;!-- PROJECT MUST DEFINE: project.package, project.test.classname --&gt;
-    &lt;!-- optional: &quot;project.jar.classname&quot; to build an executable jar --&gt;
-    &lt;!-- optional: &quot;skip.download&quot; &quot;skip.tests&quot; --&gt;
-    &lt;property name=&quot;source.dir&quot; value=&quot;${basedir}/src/main/scala&quot; /&gt;
-    &lt;property name=&quot;test.source.dir&quot; value=&quot;${basedir}/src/test/scala&quot; /&gt;
-    &lt;property name=&quot;target.dir&quot; value=&quot;${basedir}/target/classes&quot; /&gt;
-    &lt;property name=&quot;test.target.dir&quot; value=&quot;${basedir}/target/test-classes&quot; /&gt;
-    
-    &lt;property environment=&quot;env&quot; /&gt;
-    
-    &lt;property name=&quot;ivy.install.version&quot; value=&quot;2.0.0-beta2&quot; /&gt;
-    &lt;property name=&quot;ivy.jar.dir&quot; value=&quot;${user.home}/.ivy2&quot; /&gt;
-    &lt;property name=&quot;ivy.jar.file&quot; value=&quot;${ivy.jar.dir}/ivy-${ivy.install.version}.jar&quot; /&gt;
-
-    &lt;!-- override some ivy config --&gt;
-    &lt;property name=&quot;ivy.distrib.dir&quot; value=&quot;${dist.dir}&quot; /&gt;
-    &lt;property name=&quot;ivy.deliver.ivy.pattern&quot; value=&quot;${dist.dir}/[artifact]-[revision].[ext]&quot; /&gt;
-    
-    &lt;!--
-        download ivy from the web site so that it can be used without being
-        installed. if the file has already been downloaded, we use a rename
-        trick to avoid hitting the website again. (that would be annoying
-        when building offline.)
-    --&gt;
-    &lt;target name=&quot;download-ivy&quot; unless=&quot;skip.download&quot;&gt;
-        &lt;mkdir dir=&quot;${ivy.jar.dir}&quot;/&gt;
-        &lt;condition property=&quot;ivy.url&quot; value=&quot;file:${ivy.jar.file}&quot;&gt;
-            &lt;available file=&quot;${ivy.jar.file}&quot; /&gt;
-        &lt;/condition&gt;
-        &lt;property name=&quot;ivy.url&quot; value=&quot;http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar&quot; /&gt;
-        &lt;get src=&quot;${ivy.url}&quot; dest=&quot;${ivy.jar.file}.download&quot; usetimestamp=&quot;true&quot; /&gt;
-        &lt;move file=&quot;${ivy.jar.file}.download&quot; tofile=&quot;${ivy.jar.file}&quot; /&gt;
-    &lt;/target&gt;
-    
-    &lt;!-- import ivy's ant tasks --&gt;
-    &lt;target name=&quot;install-ivy&quot; depends=&quot;download-ivy&quot;&gt;
-        &lt;path id=&quot;ivy.lib.path&quot;&gt;
-            &lt;fileset dir=&quot;${ivy.jar.dir}&quot; includes=&quot;*.jar&quot;/&gt;
-        &lt;/path&gt;
-        &lt;taskdef resource=&quot;org/apache/ivy/ant/antlib.xml&quot; uri=&quot;antlib:org.apache.ivy.ant&quot; classpathref=&quot;ivy.lib.path&quot; /&gt;
-    &lt;/target&gt;    
-
-    &lt;!-- define filename-friendly names for the OS variants --&gt;
-    &lt;condition property=&quot;os.libsname&quot; value=&quot;osx&quot;&gt;
-        &lt;os name=&quot;Mac OS X&quot; /&gt;
+  &lt;!-- defaults for all projects --&gt;
+  &lt;property name=&quot;source.dir&quot; value=&quot;${basedir}/src/main&quot; /&gt;
+  &lt;property name=&quot;test.source.dir&quot; value=&quot;${basedir}/src/test&quot; /&gt;
+  &lt;property name=&quot;target.dir&quot; value=&quot;${basedir}/target&quot; /&gt;
+
+  &lt;property environment=&quot;env&quot; /&gt;
+
+  &lt;property name=&quot;ivy.install.version&quot; value=&quot;2.0.0-rc1&quot; /&gt;
+  &lt;property name=&quot;ivy.jar.dir&quot; value=&quot;${user.home}/.ivy2&quot; /&gt;
+  &lt;property name=&quot;ivy.jar.file&quot; value=&quot;${ivy.jar.dir}/ivy-${ivy.install.version}.jar&quot; /&gt;
+  &lt;property name=&quot;jsch.install.version&quot; value=&quot;0.1.29&quot; /&gt;
+  &lt;property name=&quot;jsch.jar.file&quot; value=&quot;${ivy.jar.dir}/jsch-${jsch.install.version}.jar&quot; /&gt;
+
+  &lt;!-- override some ivy config --&gt;
+  &lt;property name=&quot;ivy.distrib.dir&quot; value=&quot;${dist.dir}&quot; /&gt;
+  &lt;property name=&quot;ivy.deliver.ivy.pattern&quot; value=&quot;${dist.dir}/[artifact]-[revision].[ext]&quot; /&gt;
+
+  &lt;!--
+    download ivy from the web site so that it can be used without being
+    installed. if the file has already been downloaded, we use a rename
+    trick to avoid hitting the website again. (that would be annoying
+    when building offline.)
+  --&gt;
+  &lt;target name=&quot;download-ivy&quot; unless=&quot;skip.download&quot;&gt;
+    &lt;mkdir dir=&quot;${ivy.jar.dir}&quot;/&gt;
+    &lt;condition property=&quot;ivy.url&quot; value=&quot;file:${ivy.jar.file}&quot;&gt;
+      &lt;available file=&quot;${ivy.jar.file}&quot; /&gt;
     &lt;/condition&gt;
-    &lt;condition property=&quot;os.libsname&quot; value=&quot;linux&quot;&gt;
-        &lt;os name=&quot;Linux&quot; /&gt;
+    &lt;property name=&quot;ivy.url&quot; value=&quot;http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar&quot; /&gt;
+    &lt;get src=&quot;${ivy.url}&quot; dest=&quot;${ivy.jar.file}.download&quot; usetimestamp=&quot;true&quot; /&gt;
+    &lt;move file=&quot;${ivy.jar.file}.download&quot; tofile=&quot;${ivy.jar.file}&quot; /&gt;
+
+    &lt;condition property=&quot;jsch.url&quot; value=&quot;file:${jsch.jar.file}&quot;&gt;
+      &lt;available file=&quot;${jsch.jar.file}&quot; /&gt;
     &lt;/condition&gt;
+    &lt;property name=&quot;jsch.url&quot; value=&quot;http://repo1.maven.org/maven2/jsch/jsch/${jsch.install.version}/jsch-${jsch.install.version}.jar&quot; /&gt;
+    &lt;get src=&quot;${jsch.url}&quot; dest=&quot;${jsch.jar.file}.download&quot; usetimestamp=&quot;true&quot; /&gt;
+    &lt;move file=&quot;${jsch.jar.file}.download&quot; tofile=&quot;${jsch.jar.file}&quot; /&gt;
+  &lt;/target&gt;
+
+  &lt;!-- import ivy's ant tasks --&gt;
+  &lt;target name=&quot;install-ivy&quot; depends=&quot;download-ivy&quot;&gt;
+    &lt;path id=&quot;ivy.lib.path&quot;&gt;
+      &lt;fileset dir=&quot;${ivy.jar.dir}&quot; includes=&quot;*.jar&quot;/&gt;
+    &lt;/path&gt;
+    &lt;taskdef resource=&quot;org/apache/ivy/ant/antlib.xml&quot; uri=&quot;antlib:org.apache.ivy.ant&quot; classpathref=&quot;ivy.lib.path&quot; /&gt;
+  &lt;/target&gt;
+
+  &lt;!-- define filename-friendly names for the OS variants --&gt;
+  &lt;condition property=&quot;os.libsname&quot; value=&quot;osx&quot;&gt;
+    &lt;os name=&quot;Mac OS X&quot; /&gt;
+  &lt;/condition&gt;
+  &lt;condition property=&quot;os.libsname&quot; value=&quot;linux&quot;&gt;
+    &lt;os name=&quot;Linux&quot; /&gt;
+  &lt;/condition&gt;
 
-    &lt;import file=&quot;base_rules.xml&quot; /&gt;
+  &lt;!-- where to look for the ivy config --&gt;
+  &lt;property name=&quot;ivy.dep.file&quot; value=&quot;${basedir}/ivy/ivy.xml&quot; /&gt;
+  &lt;property name=&quot;ivy.settings.file&quot; value=&quot;${basedir}/ivy/ivysettings.xml&quot; /&gt;
 
+  &lt;import file=&quot;clean.xml&quot; /&gt;
+  &lt;import file=&quot;prepare.xml&quot; /&gt;
+  &lt;import file=&quot;compile.xml&quot; /&gt;
+  &lt;import file=&quot;test.xml&quot; /&gt;
+  &lt;import file=&quot;docs.xml&quot; /&gt;
+  &lt;import file=&quot;package.xml&quot; /&gt;
 &lt;/project&gt;</diff>
      <filename>ant/bootstrap.xml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
-&lt;project name=&quot;configgy&quot; default=&quot;install&quot; xmlns:ivy=&quot;antlib:org.apache.ivy.ant&quot;&gt;
+&lt;project name=&quot;configgy&quot; default=&quot;package&quot; xmlns:ivy=&quot;antlib:org.apache.ivy.ant&quot;&gt;
   &lt;description&gt; Simple configuration and logging for scala. &lt;/description&gt;
   &lt;import file=&quot;ant/bootstrap.xml&quot; /&gt;
 &lt;/project&gt;</diff>
      <filename>build.xml</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>ant/base_rules.xml</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>6f101a9b4dcd30e75dbc6646e66139e7dac76c65</id>
    </parent>
  </parents>
  <author>
    <name>Robey Pointer</name>
    <email>robey@lag.net</email>
  </author>
  <url>http://github.com/robey/configgy/commit/f54594f315ac1e64988d08077f38daa849acf96a</url>
  <id>f54594f315ac1e64988d08077f38daa849acf96a</id>
  <committed-date>2008-10-26T17:47:46-07:00</committed-date>
  <authored-date>2008-10-26T17:47:46-07:00</authored-date>
  <message>use scala-build files.</message>
  <tree>de761af812276bb8f46902e490951afa92eda138</tree>
  <committer>
    <name>Robey Pointer</name>
    <email>robey@lag.net</email>
  </committer>
</commit>
