-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
28 lines (28 loc) · 1009 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.5.0:exec</goal>
</goals>
<properties>
<exec.args>-classpath %classpath com.aissaoui.iqbal.springboot.rest.api.Application</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
<action>
<actionName>CUSTOM-Build without tests</actionName>
<displayName>Build without tests</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
</actions>