-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbactions.xml
43 lines (43 loc) · 1.49 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-lsst-deploy-local</actionName>
<displayName>tomcat LSST deploy (local)</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>package</goal>
<goal>tomcat7:deploy</goal>
</goals>
<activatedProfiles>
<activatedProfile>deploy-local</activatedProfile>
<activatedProfile>LSST-CAMERA</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-lsst-deploy-dev</actionName>
<displayName>tomcat LSST deploy (dev)</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>package</goal>
<goal>tomcat7:deploy</goal>
</goals>
<activatedProfiles>
<activatedProfile>deploy-dev</activatedProfile>
<activatedProfile>LSST-CAMERA</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-lsst-deploy-prod</actionName>
<displayName>tomcat LSST deploy (prod)</displayName>
<goals>
<goal>package</goal>
<goal>tomcat7:deploy</goal>
</goals>
<activatedProfiles>
<activatedProfile>deploy-prod</activatedProfile>
<activatedProfile>LSST-CAMERA</activatedProfile>
</activatedProfiles>
</action>
</actions>