CCM NG: Added parameters for enabling debugger to Wildfly Maven plugin configuration
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4167 8810af33-2d31-482b-a856-94f89814c4dfpull/2/head
parent
864094a5dd
commit
25166623cf
|
|
@ -99,6 +99,10 @@
|
|||
</commands>
|
||||
</beforeDeployment>
|
||||
|
||||
<java-opts>
|
||||
<java-opt>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8787</java-opt>
|
||||
</java-opts>
|
||||
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
|
|
@ -153,6 +157,10 @@
|
|||
</commands>
|
||||
</beforeDeployment>
|
||||
|
||||
<java-opts>
|
||||
<java-opt>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8787</java-opt>
|
||||
</java-opts>
|
||||
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
|
|
@ -181,6 +189,10 @@
|
|||
<version>${wildfly.version}</version>
|
||||
|
||||
<skip>false</skip>
|
||||
|
||||
<java-opts>
|
||||
<java-opt>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8787</java-opt>
|
||||
</java-opts>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
|||
|
|
@ -178,11 +178,11 @@ public class ApplicationsTab extends LayoutPanel {
|
|||
appTypes.entrySet().forEach(e -> {
|
||||
final String appTypeName = e.getKey();
|
||||
final Class<? extends AbstractAppInstanceForm> instanceFormClass
|
||||
= e
|
||||
.getValue().instanceForm();
|
||||
= e.getValue()
|
||||
.instanceForm();
|
||||
final Class<? extends AbstractAppSettingsPane> settingsPaneClass
|
||||
= e
|
||||
.getValue().settingsPane();
|
||||
= e.getValue()
|
||||
.settingsPane();
|
||||
final boolean singleton = e.getValue().singleton();
|
||||
|
||||
if (singleton) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue