Skip to content

Commit

Permalink
Merge pull request #17935 from stuartwdouglas/gradle-color
Browse files Browse the repository at this point in the history
Enable color for quarkusDev
  • Loading branch information
gastaldi authored Jun 16, 2021
2 parents 6fb014d + 8ab1a5e commit ed5b08a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ private QuarkusDevModeLauncher newLauncher() throws Exception {
.debug(System.getProperty("debug"))
.debugHost(System.getProperty("debugHost", "localhost"))
.suspend(System.getProperty("suspend"))
.jvmArgs("-Dquarkus.test.basic-console=true"); //TODO: figure out how to fix the console
.jvmArgs("-Dquarkus.test.basic-console=true")
.jvmArgs("-Dio.quarkus.launched-from-ide=true");

if (getJvmArgs() != null) {
builder.jvmArgs(getJvmArgs());
Expand Down

0 comments on commit ed5b08a

Please sign in to comment.