This repository was archived by the owner on May 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 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 1010 <properties >
1111 <graalvm .version>1.0.0-rc9</graalvm .version>
1212 <compiler .dir>${project.build.directory} /compiler</compiler .dir>
13+ <debug .args>-Dignore</debug .args> <!-- to take debug.args into account -->
1314 </properties >
1415 <profiles >
1516 <profile >
117118 <argument >-classpath</argument >
118119 <!-- automatically creates the classpath using all project dependencies, also adding the project build directory -->
119120 <classpath />
121+ <argument >${debug.args} </argument >
120122 <argument >-XX:+UnlockExperimentalVMOptions</argument >
121123 <argument >-XX:+EnableJVMCI</argument >
122124 <argument >--upgrade-module-path=${compiler.dir} /compiler.jar</argument >
205207 <arguments >
206208 <argument >-classpath</argument >
207209 <classpath />
210+ <argument >${debug.args} </argument >
208211 <argument >com.mycompany.app.App</argument >
209212 </arguments >
210213 </configuration >
249252 <argument >-classpath</argument >
250253 <!-- automatically creates the classpath using all project dependencies, also adding the project build directory -->
251254 <classpath />
255+ <argument >${debug.args} </argument >
252256 </arguments >
253257 </configuration >
254258 </execution >
You can’t perform that action at this time.
0 commit comments