|
Revision 123, 380 bytes
(checked in by mrook, 2 years ago)
|
Set svn:keywords property on all files
|
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
<project default="dont-run-this"> |
|---|
| 2 |
<target name="dont-run-this"> |
|---|
| 3 |
<fail>This build file is supposed to be run by a Unit test</fail> |
|---|
| 4 |
</target> |
|---|
| 5 |
|
|---|
| 6 |
<target name="testPropertyExpansion"> |
|---|
| 7 |
<sequential> |
|---|
| 8 |
<property name="foo" value="it worked"/> |
|---|
| 9 |
<echo message="As attribute: ${foo}"/> |
|---|
| 10 |
<echo>As nested text: ${foo}</echo> |
|---|
| 11 |
</sequential> |
|---|
| 12 |
</target> |
|---|
| 13 |
</project> |
|---|