-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnbactions.xml
54 lines (54 loc) · 1.91 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
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Run dev</actionName>
<displayName>Run dev</displayName>
<goals>
<goal>spring-boot:run</goal>
</goals>
<activatedProfiles>
<activatedProfile>dev</activatedProfile>
<activatedProfile>goslin-webapp</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-Run dev debug</actionName>
<displayName>Run dev debug</displayName>
<goals>
<goal>spring-boot:run</goal>
</goals>
<properties>
<jpda.listen>maven</jpda.listen>
</properties>
<activatedProfiles>
<activatedProfile>dev</activatedProfile>
<activatedProfile>goslin-webapp</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-dev offline</actionName>
<displayName>dev offline</displayName>
<goals>
<goal>spring-boot:run</goal>
</goals>
<activatedProfiles>
<activatedProfile>dev</activatedProfile>
<activatedProfile>goslin-webapp</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-Build Native Image</actionName>
<displayName>Build Native Image</displayName>
<goals>
<goal>spring-boot:build-image</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Build Native Package</actionName>
<displayName>Build Native Package</displayName>
<goals>
<goal>package</goal>
<goal>spring-boot:build-image</goal>
</goals>
</action>
</actions>