-
Notifications
You must be signed in to change notification settings - Fork 2
/
nbactions.xml
53 lines (53 loc) · 1.71 KB
/
nbactions.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<!-- Deploy this to our mvn repository -->
<actions>
<action>
<actionName>CUSTOM-git local deploy</actionName>
<displayName>git local deploy</displayName>
<goals>
<goal>deploy</goal>
</goals>
<properties>
<altDeploymentRepository>release-repo::default::file:../../wiser-mvn-repo/releases</altDeploymentRepository>
</properties>
</action>
<action>
<actionName>Exec Ant run</actionName>
<goals>
<goal>package</goal>
<goal>antrun:run</goal>
</goals>
<activatedProfiles>
<activatedProfile>run-on-felix</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>Exect Ant debug</actionName>
<goals>
<goal>package</goal>
<goal>antrun:run</goal>
</goals>
<properties>
<vm.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address}</vm.args>
<jpda.listen>true</jpda.listen>
</properties>
<activatedProfiles>
<activatedProfile>run-on-felix</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>Exec Ant profile</actionName>
<goals>
<goal>package</goal>
<goal>antrun:run</goal>
</goals>
<properties>
<vm.args>${profiler.args}</vm.args>
<!-- XXX <java jvm="${profiler.java}" ...> -->
<profiler.action>profile</profiler.action>
</properties>
<activatedProfiles>
<activatedProfile>run-on-felix</activatedProfile>
</activatedProfiles>
</action>
</actions>