Releases: greg2001/ant-flaka
Releases · greg2001/ant-flaka
V1.3.6
V1.3.5
1.03.05 (unofficial)
-
NEW: task "copy" extending the standard Ant copy task with "preserveexecutable" attribute
allowing the user to preserve execute permissions when copying files (Java 6+ and Ant 1.8.2+ required):<fl:copy file="foo" tofile="bar" preserveexecutable="true"/>
V1.3.4
1.03.04 (unofficial)
- NEW: EL method invocation support:
#{ 'foo'.toUpperCase().replaceAll('FOO', 'BAR') } == BAR - NEW: file.tounix property:
#{ 'C:\Windows\System32'.tofile.tounix } == C:/Windows/System32 - UPDATE: string.tofile property now resolves relative paths using project.resolveFile(string)
instead of new File(project.getBaseDir(), string) to be consistent with Ant
V1.3.3
V1.3.2
V1.3.1
V1.3.0
1.03.00 (unofficial)
- BUGFIX: Issue 19: Flaka impacts default Ant task local
- BUGFIX: All whitespace-only strings are be converted to empty strings, so that
<pathconvert pathsep=" "...
becomes
<pathconvert pathsep=""...