Skip to content

Commit

Permalink
Merge pull request #44305 from aloubyansky/ext-dev-mode-args
Browse files Browse the repository at this point in the history
Ability to configure extension Dev mode JVM options
  • Loading branch information
aloubyansky authored Nov 15, 2024
2 parents 82ee988 + 75ebde9 commit 65b55fd
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 65b55fd

Please sign in to comment.