-
Notifications
You must be signed in to change notification settings - Fork 5
/
nbactions.xml
63 lines (63 loc) · 2.3 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
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-stage site</actionName>
<displayName>stage site</displayName>
<goals>
<goal>-e</goal>
<goal>org.apache.maven.plugins:maven-site-plugin:3.0:stage-deploy</goal>
</goals>
<properties>
<stagingSiteURL>file:/Sites/tcc</stagingSiteURL>
</properties>
</action>
<action>
<actionName>rebuild</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>-e</goal>
</goals>
<properties>
<Env.MAVEN_OPTS>-Xmx8g -Xms8g -ea</Env.MAVEN_OPTS>
</properties>
</action>
<action>
<actionName>CUSTOM-debug</actionName>
<displayName>debug</displayName>
<goals>
<goal>-e</goal>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<jpda.listen>true</jpda.listen>
<Env.MAVEN_OPTS>-XX:+UseCompressedOops -Xmx8g -Xms8g -Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address}</Env.MAVEN_OPTS>
</properties>
</action>
<action>
<actionName>CUSTOM-clean install site-deploy</actionName>
<displayName>clean install site-deploy</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>site-deploy</goal>
<goal>-DskipTests=true</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-gitflow release</actionName>
<displayName>gitflow release</displayName>
<goals>
<goal>com.amashchenko.maven.plugin:gitflow-maven-plugin:release</goal>
</goals>
<activatedProfiles>
<activatedProfile>-solor-database</activatedProfile>
<activatedProfile>-solor</activatedProfile>
<activatedProfile>meta-database</activatedProfile>
</activatedProfiles>
</action>
</actions>