This repository was archived by the owner on May 22, 2024. It is now read-only.
File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <actions >
3
+ <action >
4
+ <actionName >run</actionName >
5
+ <packagings >
6
+ <packaging >jar</packaging >
7
+ </packagings >
8
+ <goals >
9
+ <goal >process-classes</goal >
10
+ <goal >exec:exec</goal >
11
+ </goals >
12
+ </action >
13
+ <action >
14
+ <actionName >debug</actionName >
15
+ <packagings >
16
+ <packaging >jar</packaging >
17
+ </packagings >
18
+ <goals >
19
+ <goal >process-classes</goal >
20
+ <goal >exec:exec</goal >
21
+ </goals >
22
+ <properties >
23
+ <debug .args>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</debug .args>
24
+ <jpda .listen>true</jpda .listen>
25
+ </properties >
26
+ </action >
27
+ </actions >
Original file line number Diff line number Diff line change 10
10
<properties >
11
11
<graalvm .version>1.0.0-rc9</graalvm .version>
12
12
<compiler .dir>${project.build.directory} /compiler</compiler .dir>
13
+ <debug .args>-Dignore</debug .args> <!-- to take debug.args into account -->
13
14
</properties >
14
15
<profiles >
15
16
<profile >
117
118
<argument >-classpath</argument >
118
119
<!-- automatically creates the classpath using all project dependencies, also adding the project build directory -->
119
120
<classpath />
121
+ <argument >${debug.args} </argument >
120
122
<argument >-XX:+UnlockExperimentalVMOptions</argument >
121
123
<argument >-XX:+EnableJVMCI</argument >
122
124
<argument >--upgrade-module-path=${compiler.dir} /compiler.jar</argument >
205
207
<arguments >
206
208
<argument >-classpath</argument >
207
209
<classpath />
210
+ <argument >${debug.args} </argument >
208
211
<argument >com.mycompany.app.App</argument >
209
212
</arguments >
210
213
</configuration >
249
252
<argument >-classpath</argument >
250
253
<!-- automatically creates the classpath using all project dependencies, also adding the project build directory -->
251
254
<classpath />
255
+ <argument >${debug.args} </argument >
252
256
</arguments >
253
257
</configuration >
254
258
</execution >
You can’t perform that action at this time.
0 commit comments