From: Markus U. <mar...@gm...> - 2009-07-23 23:16:59
|
Lars Heuer schrieb: > Hi Hannes, > >> Is it possible to remove the snapshot part of the tinyTiM-2.0.0a5 jar? >> Right now it is necessary to edit the build.xml of tinyTiM-mio for >> every new tinyTiM build, which is a bit annoying. >> > It is. :) > Just remove the hash in front of > #release_type= > in the build.properties. > > I am open to better ideas how to distinguish between official builds > and snapshots, though. :) > I actually like the current naming scheme ;) @Hannes: In order to remedy the problem mentioned above, I use fileset definitions instead of hard-coded names (which is far more convenient as long as there's only one version of a library in the search path), e.g., <path id="compile.classpath.tmapi2"> <fileset dir="${lib.dir}/3rdparty/tm-engine/tinytim20"> <include name="tmapi-2*.jar" /> <include name="tinytim-mio-2*.jar" /> <!-- needed because of TinyTimMapInputHandler --> <include name="tinytim-2*.jar" /> </fileset> </path> Ad astra, Markus |