Make JCtools available (provided scope) for tests and optional OSGI, issue #5383

This commit is contained in:
Guido Medina 2016-06-10 22:24:16 +01:00 committed by Norman Maurer
parent cc580e3ba1
commit b921f80057
2 changed files with 10 additions and 2 deletions

View File

@ -47,6 +47,8 @@
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<!-- Need compile scope to be taken into account by shade plugin -->
<scope>compile</scope>
<!-- Mark as optional as otherwise the bundle plugin will add strict import statements and so fail in OSGI containers-->
<optional>true</optional>
</dependency>
@ -182,7 +184,6 @@
</goals>
<configuration>
<instructions>
<!-- Exclude org.jctools.* as we shade it -->
<!-- NativeLibraryLoader can be used to manually load native libraries from other bundles that this bundle does not depend on,
hence use DynamicImport-Package instruction to ensure the loading is successful -->
<DynamicImport-Package>*</DynamicImport-Package>

View File

@ -598,6 +598,13 @@
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<!-- Provided dependency for tests inside IDEs -->
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>