Skip to content

Commit 65b55fd

Browse files
authored
Merge pull request #44305 from aloubyansky/ext-dev-mode-args
Ability to configure extension Dev mode JVM options
2 parents 82ee988 + 75ebde9 commit 65b55fd

File tree

36 files changed

+2505
-932
lines changed

36 files changed

+2505
-932
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package io.quarkus.deployment.dev;
2+
3+
import java.nio.file.Path;
4+
import java.util.Collection;
5+
import java.util.List;
6+
7+
public class DevModeCommandLine {
8+
9+
public static DevModeCommandLineBuilder builder(String java) {
10+
return new DevModeCommandLineBuilder(java);
11+
}
12+
13+
private final List<String> args;
14+
private final String debugPort;
15+
private final Collection<Path> buildFiles;
16+
17+
public DevModeCommandLine(List<String> args, String debugPort, Collection<Path> buildFiles) {
18+
this.args = args;
19+
this.debugPort = debugPort;
20+
this.buildFiles = buildFiles;
21+
}
22+
23+
public List<String> getArguments() {
24+
return args;
25+
}
26+
27+
public Collection<Path> getWatchedBuildFiles() {
28+
return buildFiles;
29+
}
30+
31+
public String getDebugPort() {
32+
return debugPort;
33+
}
34+
35+
}

0 commit comments

Comments
 (0)