forked from tomekkup/helenos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
32 lines (31 loc) · 845 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<project name="helenos" basedir=".">
<target name="create-version-signature-file">
<echo file="src/main/frontend/version.json" append="false">{
"let" : {
"HELENOS_VERSION" : "${app_version}"
},
"jobs" : {
"build-withver" : {
"extend" : ["build"],
"environment" : {
"qx.app.version" : "${HELENOS_VERSION}"
}
},
"lint-withver" : {
"extend" : ["lint"],
"environment" : {
"qx.app.version" : "${HELENOS_VERSION}"
}
},
"clean-withver" : {
"extend" : ["clean"],
"environment" : {
"qx.app.version" : "${HELENOS_VERSION}"
}
}
}
}
</echo>
</target>
</project>