Skip to content

Commit

Permalink
Ability to configure extension Dev mode JVM arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
aloubyansky authored and Alexey Loubyansky committed Nov 14, 2024
1 parent 19ee291 commit 75ebde9
Show file tree
Hide file tree
Showing 36 changed files with 2,505 additions and 932 deletions.
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;
}

}
Loading

0 comments on commit 75ebde9

Please sign in to comment.