<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -62,22 +62,26 @@
 
   &lt;target name=&quot;package&quot; depends=&quot;test, make-non-executable-jar, make-executable-jar,
     generate-scripts, docs&quot; description=&quot;build complete jar(s) and docs&quot;&gt;
-    &lt;ivy:makepom ivyfile=&quot;${basedir}/ivy/ivy.xml&quot; pomfile=&quot;${dist.dir}/${dist.name}.pom&quot; /&gt;
+    &lt;ivy:makepom ivyfile=&quot;${basedir}/ivy/ivy.xml&quot; pomfile=&quot;${dist.dir}/${dist.name}.pom&quot;&gt;
+      &lt;mapping conf=&quot;*&quot; scope=&quot;runtime&quot; /&gt;
+      &lt;mapping conf=&quot;bootstrap&quot; scope=&quot;compile&quot; /&gt;
+      &lt;mapping conf=&quot;test&quot; scope=&quot;compile&quot; /&gt;
+    &lt;/ivy:makepom&gt;
     &lt;ivy:deliver conf=&quot;*(public)&quot; /&gt;
-    &lt;condition property=&quot;dist.zip.name&quot;
-               value=&quot;${dist.name}-${revision-short}.zip&quot;
-               else=&quot;${dist.name}.zip&quot;&gt;
-      &lt;isset property=&quot;dist.build_name&quot; /&gt;
+    &lt;condition property=&quot;dist.tarball.name&quot;
+               value=&quot;${ivy.module}-${revision-short}.tar.bz2&quot;
+               else=&quot;${dist.name}.tar.bz2&quot;&gt;
+      &lt;isset property=&quot;dist.build_integration&quot; /&gt;
     &lt;/condition&gt;
-    &lt;zip destfile=&quot;${basedir}/dist/${dist.zip.name}&quot;
-         basedir=&quot;${basedir}/dist&quot;&gt;
+    &lt;tar destfile=&quot;${basedir}/dist/${dist.tarball.name}&quot;
+         basedir=&quot;${basedir}/dist&quot; compression=&quot;bzip2&quot;&gt;
       &lt;include name=&quot;${dist.name}/${jar.name}.jar&quot; /&gt;
       &lt;include name=&quot;${dist.name}/*.so&quot; /&gt;
       &lt;include name=&quot;${dist.name}/*.jnilib&quot; /&gt;
       &lt;include name=&quot;${dist.name}/libs/**&quot; /&gt;
       &lt;include name=&quot;${dist.name}/config/**&quot; /&gt;
       &lt;include name=&quot;${dist.name}/scripts/**&quot; /&gt;
-    &lt;/zip&gt;
+    &lt;/tar&gt;
     &lt;ivy:publish resolver=&quot;local&quot; overwrite=&quot;true&quot;&gt;
       &lt;artifacts pattern=&quot;${dist.dir}/[artifact]-[revision].[ext]&quot; /&gt;
     &lt;/ivy:publish&gt;</diff>
      <filename>ant/package.xml</filename>
    </modified>
    <modified>
      <diff>@@ -8,8 +8,10 @@
 
     &lt;ivy:info file=&quot;${ivy.dep.file}&quot; /&gt;
 
+    &lt;condition property=&quot;dist.name&quot; value=&quot;${ivy.module}&quot; else=&quot;${ivy.module}-${ivy.revision}&quot;&gt;
+      &lt;isset property=&quot;dist.build_integration&quot; /&gt;
+    &lt;/condition&gt;
     &lt;property name=&quot;jar.name&quot; value=&quot;${ivy.module}-${ivy.revision}&quot; /&gt;
-    &lt;property name=&quot;dist.name&quot; value=&quot;${ivy.module}-${ivy.revision}&quot; /&gt;
     &lt;property name=&quot;dist.relative.dir&quot; value=&quot;dist/${dist.name}&quot; /&gt;
     &lt;property name=&quot;dist.dir&quot; value=&quot;${basedir}/${dist.relative.dir}&quot; /&gt;
     &lt;property name=&quot;docs.target.dir&quot; value=&quot;${dist.dir}/docs&quot; /&gt;</diff>
      <filename>ant/prepare.xml</filename>
    </modified>
    <modified>
      <diff>@@ -38,12 +38,19 @@
     &lt;run-test-class classname=&quot;${ivy.extra.stresstestclass}&quot; /&gt;
   &lt;/target&gt;
 
+  &lt;target name=&quot;run-check-tests&quot; unless=&quot;skip.test&quot; if=&quot;ivy.extra.checktestclass&quot;&gt;
+    &lt;run-test-class classname=&quot;${ivy.extra.checktestclass}&quot; /&gt;
+  &lt;/target&gt;
+
   &lt;target name=&quot;unit&quot; depends=&quot;compile-tests, run-unit-tests&quot;
     description=&quot;compile and run unit tests&quot; /&gt;
 
   &lt;target name=&quot;stress&quot; depends=&quot;compile-tests, run-stress-tests&quot;
     description=&quot;compile and run stress tests&quot; /&gt;
 
+  &lt;target name=&quot;check&quot; depends=&quot;compile-tests, run-check-tests&quot;
+    description=&quot;compile and run check tests&quot; /&gt;
+
   &lt;target name=&quot;test&quot; depends=&quot;unit&quot; /&gt;
 
 &lt;/project&gt;</diff>
      <filename>ant/test.xml</filename>
    </modified>
    <modified>
      <diff>@@ -13,11 +13,11 @@
   &lt;/configurations&gt;
   &lt;dependencies&gt;
     &lt;!-- i guess scala-compiler.jar is needed for MainGenericRunner --&gt;
-    &lt;dependency org=&quot;org.scala-lang&quot; name=&quot;scala-compiler&quot; rev=&quot;2.7.4&quot; conf=&quot;bootstrap-&gt;*; test-&gt;*&quot; /&gt;
+    &lt;dependency org=&quot;org.scala-lang&quot; name=&quot;scala-compiler&quot; rev=&quot;2.7.4&quot; /&gt;
     &lt;dependency org=&quot;org.scala-lang&quot; name=&quot;scala-library&quot; rev=&quot;2.7.4&quot; /&gt;
     &lt;dependency org=&quot;org.scala-tools&quot; name=&quot;vscaladoc&quot; rev=&quot;1.1-md-3&quot; conf=&quot;bootstrap-&gt;*&quot; /&gt;
     &lt;dependency org=&quot;markdownj&quot; name=&quot;markdownj&quot; rev=&quot;1.0.2b4-0.3.0&quot; conf=&quot;bootstrap-&gt;*&quot; /&gt;
-    &lt;dependency org=&quot;junit&quot; name=&quot;junit&quot; rev=&quot;4.4&quot; /&gt;
-    &lt;dependency org=&quot;org.scala-tools.testing&quot; name=&quot;specs&quot; rev=&quot;1.4.4&quot; conf=&quot;bootstrap-&gt;*; test-&gt;*&quot; /&gt;
+    &lt;dependency org=&quot;junit&quot; name=&quot;junit&quot; rev=&quot;4.4&quot; conf=&quot;test-&gt;*&quot; /&gt;
+    &lt;dependency org=&quot;org.scala-tools.testing&quot; name=&quot;specs&quot; rev=&quot;1.4.4&quot; conf=&quot;test-&gt;*&quot; /&gt;
   &lt;/dependencies&gt;
 &lt;/ivy-module&gt;</diff>
      <filename>ivy/ivy.xml</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f7f474c229c7ecf71b0baadeb6ecfca139f8de98</id>
    </parent>
  </parents>
  <author>
    <name>Robey Pointer</name>
    <email>robeypointer@gmail.com</email>
  </author>
  <url>http://github.com/robey/configgy/commit/94b4f89f5abe42663bcee1d9e955f475e8812757</url>
  <id>94b4f89f5abe42663bcee1d9e955f475e8812757</id>
  <committed-date>2009-05-23T21:38:11-07:00</committed-date>
  <authored-date>2009-05-23T21:38:11-07:00</authored-date>
  <message>fix up build scripts.</message>
  <tree>738c26d61000bbacb160681e3bf3879b1849f109</tree>
  <committer>
    <name>Robey Pointer</name>
    <email>robeypointer@gmail.com</email>
  </committer>
</commit>
