February 24th, 2010 - The Flaka project is pleased to announce the
release of Flaka 1.01, the first release of Flaka.
Flaka is an extension for Ant. A main project goal of Flaka is the
simplification of writing a build script.
Flaka provides:
1. an expression language (Java Unified Expression Language)
2. well known programming elements (for, when, switch, choose, ..)
3. exception handling
4. additional types, tasks and macros
A small teaser script to demonstrate some of those features:
<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
(* Part I of this manual contains a broad overview of
features Flaka has been charged with *)
Jar (ready to be used - no additional dependencies required)
http://flaka.googlecode.com/files/ant-flaka-1.01.jar
Development Package (rebuild from scratch)
http://flaka.googlecode.com/files/flaka-1.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 ; and
http://workbench.haefelinger.it/flaka
Regards,
Wolfgang Häfelinger
--
Wolfgang Häfelinger
häfelinger IT - Applied Software Architecture
http://www.haefelinger.it
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]