'lo all,
Is the maven-bundle-plugin supposed to work with system scoped
dependencies? I have in my pom.xml:
<dependency>
<groupId>com.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>8.o-8460</version>
<scope>system</scope>
<systemPath>${basedir}/lib/jetbrains-annotations.jar</systemPath>
</dependency>
and later:
<Export-Package>myutils.util.*,org.jetbrains.annotations</Export-Package>
but the bundle plugin keeps reporting "Superfluous export-package
instructions". This seems to work fine for non-system scoped
dependencies...
Mark
--
"It is easier to optimize correct code than to correct optimized code." --
Bill Harlan