forked from b3log/solo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
58 lines (58 loc) · 1.62 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
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<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>
<action>
<actionName>CUSTOM-license-remove</actionName>
<displayName>license-remove</displayName>
<goals>
<goal>license:remove</goal>
</goals>
</action>
<action>
<actionName>rebuild</actionName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</action>
<action>
<actionName>build</actionName>
<goals>
<goal>install</goal>
</goals>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</action>
<action>
<actionName>CUSTOM-checkstyle-checkstyle</actionName>
<displayName>checkstyle-checkstyle</displayName>
<goals>
<goal>checkstyle:checkstyle</goal>
</goals>
</action>
<action>
<actionName>build-with-dependencies</actionName>
<basedir>..</basedir>
<reactor>also-make</reactor>
<goals>
<goal>install</goal>
</goals>
</action>
</actions>