-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnbactions.xml
28 lines (28 loc) · 967 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>CUSTOM-SignedApp</actionName>
<displayName>SignedApp</displayName>
<goals>
<goal>install</goal>
</goals>
<properties>
<keystore>keystore</keystore>
<keystorealias>omiscidstore</keystorealias>
<keystorepassword>omiscidlm1</keystorepassword>
</properties>
<activatedProfiles>
<activatedProfile>deployment</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>build-with-dependencies</actionName>
<basedir>.</basedir>
<goals>
<goal>reactor:make</goal>
</goals>
<properties>
<make.artifacts>${groupId}:${artifactId}</make.artifacts>
</properties>
</action>
</actions>