-
Notifications
You must be signed in to change notification settings - Fork 2
/
nbactions.xml
38 lines (38 loc) · 1.26 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Configuration file for making possible to execute the GIGS tests runner from
Apache NetBeans IDE. An explicit configuration is needed because by default,
NetBeans launches the application as an unnamed module (i.e. using the Java
"classpath" options). But we need the application to be launched as a named
module (i.e. using the Java "modulepath" options) for enabling the dynamic
discovery of GeoAPI implementations when they are themselves named modules.
-->
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:exec</goal>
</goals>
<properties>
<exec.vmArgs>-enableassertions</exec.vmArgs>
</properties>
</action>
<action>
<actionName>debug</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:exec</goal>
</goals>
<properties>
<jpda.listen>true</jpda.listen>
<exec.vmArgs>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</exec.vmArgs>
</properties>
</action>
</actions>