Skip to content

Commit

Permalink
Add missing OSGi Import-Package statement (fixes #29)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Sep 26, 2015
1 parent 079e7ee commit 794e34a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -11,7 +11,7 @@ before_install:
- cp gradle.properties.ci gradle.properties

script:
- JAVA_OPTS="-Xmx384m -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=0 -noverify" ./gradlew check -S
- JAVA_OPTS="-Xmx384m -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=0 -noverify" ./gradlew check

after_success:
- ./gradlew coveralls uploadArchives
Expand Down
6 changes: 5 additions & 1 deletion caffeine/build.gradle
Expand Up @@ -49,7 +49,11 @@ dependencies {
}

bundle {
instruction 'Import-Package', 'sun.misc.*;resolution:=optional'
instruction 'Import-Package', [
'sun.misc.*',
'com.github.benmanes.caffeine.cache.tracing',
'resolution:=optional'
].join(';')
instruction 'Export-Package', [
'com.github.benmanes.caffeine',
'com.github.benmanes.caffeine.base',
Expand Down

0 comments on commit 794e34a

Please sign in to comment.