-
Notifications
You must be signed in to change notification settings - Fork 102
/
nbactions-wildfly-managed.xml
36 lines (34 loc) · 1.34 KB
/
nbactions-wildfly-managed.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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Failsafe test File</actionName>
<displayName>Failsafe test File</displayName>
<goals>
<goal>compiler:testCompile</goal>
<goal>verify</goal>
</goals>
<properties>
<it.test>${packageClassName}</it.test>
</properties>
<activatedProfiles>
<activatedProfile>wildfly-managed</activatedProfile>
</activatedProfiles>
</action>
<action>
<actionName>CUSTOM-Failsafe Debug test File</actionName>
<displayName>Failsafe Debug test File</displayName>
<goals>
<goal>test-compile</goal>
<goal>verify</goal>
</goals>
<properties>
<it.test>${packageClassName}</it.test>
<forkMode>once</forkMode>
<maven.failsafe.debug>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address}</maven.failsafe.debug>
<jpda.listen>true</jpda.listen>
</properties>
<activatedProfiles>
<activatedProfile>wildfly-managed</activatedProfile>
</activatedProfiles>
</action>
</actions>