forked from msdk/msdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
59 lines (59 loc) · 2.15 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
59
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-MSDK Prepare Release</actionName>
<displayName>MSDK Prepare Release</displayName>
<goals>
<goal>versions:set</goal>
<goal>versions:commit</goal>
</goals>
<properties>
<newVersion>0.0.4</newVersion>
</properties>
<activatedProfiles>
<activatedProfile>ossrh</activatedProfile>
<activatedProfile>msdk-release</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-MSDK FixJavadoc Release</actionName>
<displayName>MSDK FixJavadoc Release</displayName>
<goals>
<goal>javadoc:fix</goal>
</goals>
<properties>
<fixTags>param,return,throws</fixTags>
<force></force>
</properties>
<activatedProfiles>
<activatedProfile>ossrh</activatedProfile>
<activatedProfile>msdk-release</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-MSDK Release Perform</actionName>
<displayName>MSDK Release Perform</displayName>
<goals>
<goal>package</goal>
<goal>deploy</goal>
</goals>
<activatedProfiles>
<activatedProfile>msdk-release</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-MSDK Release Publish Javadoc</actionName>
<displayName>MSDK Release Publish Javadoc</displayName>
<goals>
<goal>package</goal>
<goal>javadoc:aggregate</goal>
<goal>scm-publish:publish-scm</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
<activatedProfiles>
<activatedProfile>msdk-release</activatedProfile>
</activatedProfiles>
</action>
</actions>