-
Notifications
You must be signed in to change notification settings - Fork 20
/
nbactions.xml
31 lines (30 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This Source Code Form is subject to the terms of the Mozilla Public License,
~ v. 2.0. If a copy of the MPL was not distributed with this file, You can
~ obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
~ the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
~
~ Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
~ graphic logo is a trademark of OpenMRS Inc.
~
-->
<actions>
<action>
<actionName>CUSTOM-install</actionName>
<displayName>install</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-install (skip tests)</actionName>
<displayName>install (skip tests)</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>-Dmaven.test.skip=true</goal>
</goals>
</action>
</actions>