G
Gilbert Rebhan
March 23th, 2011 - The Flaka project is pleased to announce the
release of Flaka 1.02.01, the third release of Flaka.
What's new ?
Flaka 1.02.01 is a maintenance release.
Distribution jar has been rebuilt with Ant 1.8
No changes in source code, but build.xml has been extended to
assure that Ant 1.8.x is used for distribution build.
Flaka is an extension for Ant that runs with Ant versions 1.7.x and
1.8.x. A main project goal of Flaka is the simplification of writing
a build script.
Flaka requires:
Ant >= 1.7.x
Java >= 1.5
Flaka provides:
1. An expression language (Java Unified Expression Language) allowing
access to data objects, makes many scripting parts in ant scripts
unnecessary
2. Conditional and repetitive control structures like when, unless,
while, for, choose, switch ..
3. Exception handling
4. Additional types, tasks and macros
5. A comprehensive documentation
Flaka appetizer:
<project xmlns:c="antlib:it.haefelinger.flaka" name="Flaka" >
<c:logo>
Hello #{ project.name ? project.name : ''}!
</c:logo>
<c:for var=" f " in=" ''.tofile.list ">
<c:when test=" f.isfile ">
<c:echo>
;; report basename and modification time
file #{f.name} last modified: #{ f.mtime }
</c:echo>
</c:when>
</c:for>
</project>
Flaka's Google Project Page is
http://code.google.com/p/flaka
Manual
http://flaka.googlecode.com/files/flaka.pdf
Jar ready to be used - no additional dependencies required
http://flaka.googlecode.com/files/ant-flaka-1.02.01.jar
Jar requires additional dependencies
http://code.google.com/p/flaka/downloads/ant-flaka-bare-1.02.01.jar
Development Package (rebuild from scratch)
http://flaka.googlecode.com/files/flaka-1.02.01.zip
Javadocs
http://flaka.googlecode.com/files/flaka-javadoc-1.02.01.zip
Sources
http://flaka.googlecode.com/files/flaka-sources-1.02.01.zip
Issues should be reported to
http://code.google.com/p/flaka/issues/list
More information on Flaka at
http://code.google.com/p/flaka
http://workbench.haefelinger.it/flaka
Regards,
Wolfgang Häfelinger
Gilbert Rebhan
release of Flaka 1.02.01, the third release of Flaka.
What's new ?
Flaka 1.02.01 is a maintenance release.
Distribution jar has been rebuilt with Ant 1.8
No changes in source code, but build.xml has been extended to
assure that Ant 1.8.x is used for distribution build.
Flaka is an extension for Ant that runs with Ant versions 1.7.x and
1.8.x. A main project goal of Flaka is the simplification of writing
a build script.
Flaka requires:
Ant >= 1.7.x
Java >= 1.5
Flaka provides:
1. An expression language (Java Unified Expression Language) allowing
access to data objects, makes many scripting parts in ant scripts
unnecessary
2. Conditional and repetitive control structures like when, unless,
while, for, choose, switch ..
3. Exception handling
4. Additional types, tasks and macros
5. A comprehensive documentation
Flaka appetizer:
<project xmlns:c="antlib:it.haefelinger.flaka" name="Flaka" >
<c:logo>
Hello #{ project.name ? project.name : ''}!
</c:logo>
<c:for var=" f " in=" ''.tofile.list ">
<c:when test=" f.isfile ">
<c:echo>
;; report basename and modification time
file #{f.name} last modified: #{ f.mtime }
</c:echo>
</c:when>
</c:for>
</project>
Flaka's Google Project Page is
http://code.google.com/p/flaka
Manual
http://flaka.googlecode.com/files/flaka.pdf
Jar ready to be used - no additional dependencies required
http://flaka.googlecode.com/files/ant-flaka-1.02.01.jar
Jar requires additional dependencies
http://code.google.com/p/flaka/downloads/ant-flaka-bare-1.02.01.jar
Development Package (rebuild from scratch)
http://flaka.googlecode.com/files/flaka-1.02.01.zip
Javadocs
http://flaka.googlecode.com/files/flaka-javadoc-1.02.01.zip
Sources
http://flaka.googlecode.com/files/flaka-sources-1.02.01.zip
Issues should be reported to
http://code.google.com/p/flaka/issues/list
More information on Flaka at
http://code.google.com/p/flaka
http://workbench.haefelinger.it/flaka
Regards,
Wolfgang Häfelinger
Gilbert Rebhan