-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.xml
More file actions
23 lines (21 loc) · 701 Bytes
/
build.xml
File metadata and controls
23 lines (21 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<project name="one4all-webapp" default="build">
<property name="toolsdir" value=""/>
<target name="build"
depends="git-info"
description=""/>
<target name="git-info"
unless="git-info.done"
description="Add basic Git info files">
<exec executable="git" output="REVISION">
<arg value="log"/>
<arg value="--stat"/>
<arg value="-3"/>
</exec>
<exec executable="git" output="SHA1">
<arg value="rev-parse"/>
<arg value="HEAD"/>
</exec>
<property name="git-info.done" value="true"/>
</target>
</project>