-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15724 from phillip-kruger/log-to-ide
Added netbeans to the supported IDEs in DEV UI's ability to open in IDE
- Loading branch information
Showing
4 changed files
with
103 additions
and
15 deletions.
There are no files selected for viewing
22 changes: 19 additions & 3 deletions
22
core/deployment/src/main/java/io/quarkus/deployment/ide/Ide.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
package io.quarkus.deployment.ide; | ||
|
||
public enum Ide { | ||
IDEA, | ||
ECLIPSE, | ||
VSCODE | ||
|
||
IDEA("idea"), | ||
ECLIPSE("eclipse"), | ||
VSCODE("code"), | ||
NETBEANS("netbeans"); | ||
|
||
private String executable; | ||
|
||
private Ide(String executable) { | ||
this.executable = executable; | ||
} | ||
|
||
public String getExecutable() { | ||
return executable; | ||
} | ||
|
||
public void setExecutable(String executable) { | ||
this.executable = executable; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ enum Target { | |
auto, | ||
idea, | ||
vscode, | ||
eclipse | ||
eclipse, | ||
netbeans | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters