-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnbactions.xml
27 lines (27 loc) · 1.02 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-compile and package</actionName>
<displayName>compile and package</displayName>
<goals>
<goal>compile</goal>
<goal>assembly:single</goal>
</goals>
<properties>
<Env.JAVA_HOME>/Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home</Env.JAVA_HOME>
</properties>
</action>
<action>
<actionName>CUSTOM-FULL (clean compile site assembly)</actionName>
<displayName>FULL (clean compile site assembly)</displayName>
<goals>
<goal>clean</goal>
<goal>compile</goal>
<goal>site</goal>
<goal>assembly:single</goal>
</goals>
<properties>
<Env.JAVA_HOME>/Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home</Env.JAVA_HOME>
</properties>
</action>
</actions>