Skip to content

Commit

Permalink
Add OSGi import instruction to on all packages (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Sep 26, 2015
1 parent 794e34a commit 704b1b7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,5 +1,5 @@
language: java
sudo: false
sudo: true

jdk:
- oraclejdk8
Expand Down
6 changes: 6 additions & 0 deletions guava/build.gradle
Expand Up @@ -14,6 +14,12 @@ dependencies {
}

bundle {
instruction 'Import-Package', [
'com.github.benmanes.caffeine',
'com.github.benmanes.caffeine.base',
'com.github.benmanes.caffeine.cache',
'com.github.benmanes.caffeine.cache.stats',
].join(';')
instruction 'Export-Package', 'com.github.benmanes.caffeine.guava.*'
}

Expand Down
6 changes: 6 additions & 0 deletions jcache/build.gradle
Expand Up @@ -25,6 +25,12 @@ dependencies {
}

bundle {
instruction 'Import-Package', [
'com.github.benmanes.caffeine',
'com.github.benmanes.caffeine.base',
'com.github.benmanes.caffeine.cache',
'com.github.benmanes.caffeine.cache.stats',
].join(';')
instruction 'Export-Package', 'com.github.benmanes.caffeine.jcache.*'
}

Expand Down
4 changes: 4 additions & 0 deletions simulator/build.gradle
Expand Up @@ -28,6 +28,10 @@ test {
}

bundle {
instruction 'Import-Package', [
'com.github.benmanes.caffeine.cache.tracing',
'com.github.benmanes.caffeine.cache.tracing.async',
].join(';')
instruction 'Export-Package', [
'com.github.benmanes.caffeine.simulator',
'com.github.benmanes.caffeine.simulator.admission',
Expand Down
1 change: 1 addition & 0 deletions tracing/async/build.gradle
Expand Up @@ -14,5 +14,6 @@ test {
}

bundle {
instruction 'Import-Package', 'com.github.benmanes.caffeine.cache.tracing'
instruction 'Export-Package', 'com.github.benmanes.caffeine.cache.tracing.async.*'
}

0 comments on commit 704b1b7

Please sign in to comment.