citrusframework / citrus

Framework for automated integration tests with focus on messaging integration
https://citrusframework.org
Apache License 2.0
456 stars 134 forks source link

fix: nested jar loading with relative URL #1097

Closed bbortt closed 8 months ago

bbortt commented 8 months ago

turns out we have jars that use relative URLs instead of absolute ones @tschlat. the substring-invocation then fails, respectively returns a null-value for JarEntry jarEntry which makes the subsequent call to jarFile.getInputStream(jarEntry) fail.

tschlat commented 8 months ago

thx