-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnbactions.xml
More file actions
61 lines (61 loc) · 1.83 KB
/
Copy pathnbactions.xml
File metadata and controls
61 lines (61 loc) · 1.83 KB
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
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-safe-compile</actionName>
<displayName>safe-compile</displayName>
<goals>
<goal>clean</goal>
<goal>verify</goal>
</goals>
<activatedProfiles>
<activatedProfile>safer</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-travis-compile</actionName>
<displayName>travis-compile</displayName>
<goals>
<goal>clean</goal>
<goal>verify</goal>
</goals>
<activatedProfiles>
<activatedProfile>safer</activatedProfile>
<activatedProfile>integration</activatedProfile>
</activatedProfiles>
<properties>
<checkstyle.consoleOutput>false</checkstyle.consoleOutput>
</properties>
</action>
<action>
<actionName>CUSTOM-update version</actionName>
<displayName>update version</displayName>
<goals>
<goal>versions:update-child-modules</goal>
<goal>-N</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-versions commit</actionName>
<displayName>versions commit</displayName>
<goals>
<goal>versions:commit</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-license-format</actionName>
<displayName>license-format</displayName>
<goals>
<goal>com.mycila:license-maven-plugin:format</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-fast-install</actionName>
<displayName>fast-install</displayName>
<goals>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
</actions>