Skip to content

Commit

Permalink
Micronaut disables Debug* in development mode
Browse files Browse the repository at this point in the history
  • Loading branch information
sdedic committed Jun 24, 2021
1 parent c282a25 commit fd774af
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise/micronaut/nbproject/project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<build-prerequisite/>
<compile-dependency/>
<run-dependency>
<specification-version>1.17</specification-version>
<specification-version>1.18</specification-version>
</run-dependency>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,45 @@
<exec.classpathScope>${classPathScope}</exec.classpathScope>
</properties>
</action>

<action>
<actionName>debug</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
</action>

<action>
<actionName>debug.single.main</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
</action>


<action>
<actionName>debug.test.single</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
</action>

<action>
<actionName>debug.integration-test.single</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
</action>

<action>
<actionName>debug.fix</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
<goals>
<goal>compile</goal>
</goals>
</action>
</actions>
</profile>
</profiles>
Expand Down

0 comments on commit fd774af

Please sign in to comment.