Hi,
I noticed that dm-server will only look at artifact extension when deciding if it is an webapp or not.
From WebBundleTransformer.
Is there a specific reason why you guys not looking at Web-ContextPath manifest entry also?Code:private boolean isWebBundle(InstallArtifact installArtifact) { return (installArtifact instanceof BundleInstallArtifact && installArtifact.getArtifactFS().getFile().getName().toLowerCase(Locale.ENGLISH).endsWith( WAR_EXTENSION)); }


