forked from b3log/solo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
37 lines (37 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-jetty-debug</actionName>
<displayName>jetty-debug</displayName>
<goals>
<goal>jetty:run</goal>
</goals>
<properties>
<jpda.listen>maven</jpda.listen>
</properties>
</action>
<action>
<actionName>CUSTOM-release</actionName>
<displayName>release</displayName>
<goals>
<goal>clean</goal>
<goal>min:min</goal>
<goal>license:format</goal>
<goal>install</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-license-check</actionName>
<displayName>license-check</displayName>
<goals>
<goal>license:check</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-license-format</actionName>
<displayName>license-format</displayName>
<goals>
<goal>license:format</goal>
</goals>
</action>
</actions>