Skip to content

Commit

Permalink
Add OSGi Export Package to Manifest.mf
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed May 13, 2020
1 parent bf9a541 commit d84a211
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Check out the [https://github.com/akarnokd/RxJavaBridge](https://github.com/akar

```
dependencies {
compile "com.github.akarnokd:rxjava3-interop:3.0.1"
compile "com.github.akarnokd:rxjava3-interop:3.0.2"
}
```

Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ jar {
'Bundle-Vendor': 'akarnokd',
'Bundle-Description': 'Library to convert between RxJava 1.x and 3.x reactive types, schedulers and resource handles.',
'Import-Package': '!org.junit,!junit.framework,!org.mockito.*,*',
'Bundle-DocURL': 'https://github.com/akarnokd/RxJavaInterop')
'Bundle-DocURL': 'https://github.com/akarnokd/RxJavaInterop',
'Export-Package': 'hu.akarnokd.rxjava3.interop.*'
)
}

apply plugin: "com.vanniktech.maven.publish"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GROUP=com.github.akarnokd
VERSION_NAME=3.0.1
version=3.0.1
VERSION_NAME=3.0.2
version=3.0.2

POM_ARTIFACT_ID=rxjava3-interop
POM_NAME=Interop library between RxJava 1.x and 3.x
Expand Down

0 comments on commit d84a211

Please sign in to comment.