https://bugs.documentfoundation.org/show_bug.cgi?id=149069

--- Comment #3 from Tobias Widmann <widm...@fisalis.de> ---
(In reply to Stephan Bergmann from comment #2)
> The libreoffice.jar META-INF/MANIFEST.MF contains
> 
> > Class-Path:  unoloader.jar ../
> 
> which should avoid the issue that code from libreoffice.jar can't find
> classes from unoloader.jar?  But maybe that's how Maven works, which I have
> little idea about.

To make it work with Maven, the dependency on unoloader should be declared in
pom.libreoffice.xml, I think. Maybe something along those lines:

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.libreoffice</groupId>
      <artifactId>unoloader</artifactId>
      <version>@version@</version>
    </dependency>
  </dependencies>
</dependencyManagement>

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to