forked from kairosdb/kairosdb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
definitions.xml
34 lines (26 loc) · 1.22 KB
/
definitions.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
33
34
<?xml version="1.0" ?>
<definitions xmlns="http://www.cpmake.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<definition name="genormous" command="java">
<!-- <command name="genorm">java</command>
<command name="genquery">java</command> -->
<option name="classpath" pattern="(.+)">-cp $1</option>
<option name="genorm">org.agileclick.genorm.Genormous</option>
<option name="genquery">org.agileclick.genorm.QueryGen</option>
<option name="source" pattern="(.+)">-s $1</option>
</definition>
<!-- ======================================================================= -->
<definition name="testng" command="java">
<option name="classpath" pattern="(.+)">-cp $1</option>
</definition>
<!-- ======================================================================= -->
<definition name="linux-notify" command="notify-send">
<option name="title" pattern="(.+)">"$1"</option>
<option name="message" pattern="(.+)">"$1"</option>
</definition>
<definition name="mac-notify" command="osascript">
<option>-e "display notification</option>
<option name="message" pattern="(.+)">\\"$1\\"</option>
<option name="title" pattern="(.+)">with title \\"$1\\"</option>
<option>"</option>
</definition>
</definitions>