We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e3bb8b commit f2b6471Copy full SHA for f2b6471
core/deployment/src/main/java/io/quarkus/deployment/dev/IsolatedRemoteDevModeMain.java
@@ -92,7 +92,8 @@ private synchronized JarResult generateApplication() {
92
AugmentResult start = augmentAction.createProductionApplication();
93
if (!start.getJar().getType().equalsIgnoreCase(PackageConfig.BuiltInType.MUTABLE_JAR.getValue())) {
94
throw new RuntimeException(
95
- "remote-dev can only be used with mutable applications generated with the fast-jar format");
+ "remote-dev can only be used with mutable applications i.e, " +
96
+ "using the mutable-jar package type");
97
}
98
//now extract the artifacts, to mirror the remote side
99
DevModeTask.extractDevModeClasses(start.getJar().getPath().getParent(),
0 commit comments