forked from apache/stanbol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnbactions.xml
43 lines (43 loc) · 1.44 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-update-parents</actionName>
<displayName>update-parents</displayName>
<goals>
<goal>versions:update-parent</goal>
</goals>
<properties>
<allowSnapshots>true</allowSnapshots>
</properties>
</action>
<action>
<actionName>build</actionName>
<goals>
<goal>install</goal>
</goals>
<properties>
<Env.MAVEN_OPTS>-Xmx2g -XX:MaxPermSize=512M</Env.MAVEN_OPTS>
</properties>
</action>
<action>
<actionName>rebuild</actionName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<Env.MAVEN_OPTS>-Xmx2g -XX:MaxPermSize=512M</Env.MAVEN_OPTS>
</properties>
</action>
<action>
<actionName>CUSTOM-use-latests-versions</actionName>
<displayName>use-latests-versions</displayName>
<goals>
<goal>versions:use-latest-versions</goal>
</goals>
<properties>
<includes>org.apache.stanbol</includes>
<allowSnapshots>true</allowSnapshots>
</properties>
</action>
</actions>