We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2b6b93 commit 68fbb85Copy full SHA for 68fbb85
compiler/core/src/zserio/tools/ExtensionManager.java
@@ -123,13 +123,14 @@ private ClassLoader getClassLoader()
123
System.out.println("Found file: " + file);
124
if (isFileZserioExtension(file))
125
{
126
- urlArray.add(new URI("file:" + file.getPath()).toURL());
+ urlArray.add(new URI("jar:file:" + file.getPath() + "!/").toURL());
127
urlArray.addAll(getDependentJarsFromManifest(file));
128
}
129
130
131
catch (MalformedURLException | URISyntaxException excpt)
132
133
+ System.out.println("Exception!");
134
return currentClassLoader;
135
136
0 commit comments