Thanks to everyone who helped out over the weekend; I had not idea that moving 
back to geotools master was going to be such a pain. 

There were a couple of troubles with the previous approach:
- by erasing version numbers we could no longer tell jars apart; and had 
conflicts between antlr 3.3 and antler 2.7.7 (both of which are in use)
- build.properties was edited (probably by the MANIFEST.MF editor and the 
setting to compile the src folder into a library.jar was removed)

I have pushed up a fix:
1) download the jars as normal
2) correct the geotools snapshot jars with an ant task

        <move todir="${basedir}${file.separator}lib" includeemptydirs="false">
            <fileset dir="${basedir}${file.separator}lib">
                <include name="**/gt-*.jar"/>
                <exclude name="**/gt-*-SNAPSHOT.jar"/>
            </fileset>
            <regexpmapper handledirsep="yes"
               
from="^(.*?)(\$$[^/\\\.]*)?-([\\\d]+)-([\\\d]+)\.([\\\d]+)\-([\\\d]+)\.jar$$"
               to="\1-SNAPSHOT.jar"/>
        </move>


This will leave any existing SNAPSHOT jars alone (if you happened to build 
geotools locally).

While I have placed the handledirsep="yes" flag in there a test on windows 
would be helpful.

-- 
Jody Garnett

_______________________________________________
User-friendly Desktop Internet GIS (uDig)
http://udig.refractions.net
http://lists.refractions.net/mailman/listinfo/udig-devel

Reply via email to