Hi there,

The groovy guys still use their ant build to get their releases done. While having a look on the groovy gradle build (https://svn.codehaus.org/groovy/trunk/groovy/groovy-core) I detected some minor issues and ONE really weired behaviour with the binaryJarsMetaInf copyspec used for jar.metainf. This copyspec replaces some properties in groovy-release-info.properties

The LineFilter results doesn't end up in the produced jar file. But the output of the debugging snippet I've added to the build file prints the correct content.
-----------------------------
jar.doLast{
    println archivePath.absolutePath
    zipTree(archivePath).each{ file ->
        if(file.name.equals("groovy-release-info.properties")){
            println file.absolutePath
            println(file.text)
        }
    }
}
-----------------------------

Anybody a clue what went wrong here? I've tested it with the 0.9.2 version (the configured wrapper version of the groovy project) with milestone-3 and with trunk.

regards,
René

-----------------------
regards René

rene groeschke
http://www.breskeby.com
@breskeby


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to