-
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.
Ability to configure extension Dev mode JVM arguments
- Loading branch information
1 parent
19ee291
commit 75ebde9
Showing
36 changed files
with
2,505 additions
and
932 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
core/deployment/src/main/java/io/quarkus/deployment/dev/DevModeCommandLine.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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package io.quarkus.deployment.dev; | ||
|
||
import java.nio.file.Path; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
public class DevModeCommandLine { | ||
|
||
public static DevModeCommandLineBuilder builder(String java) { | ||
return new DevModeCommandLineBuilder(java); | ||
} | ||
|
||
private final List<String> args; | ||
private final String debugPort; | ||
private final Collection<Path> buildFiles; | ||
|
||
public DevModeCommandLine(List<String> args, String debugPort, Collection<Path> buildFiles) { | ||
this.args = args; | ||
this.debugPort = debugPort; | ||
this.buildFiles = buildFiles; | ||
} | ||
|
||
public List<String> getArguments() { | ||
return args; | ||
} | ||
|
||
public Collection<Path> getWatchedBuildFiles() { | ||
return buildFiles; | ||
} | ||
|
||
public String getDebugPort() { | ||
return debugPort; | ||
} | ||
|
||
} |
Oops, something went wrong.