Skip to content

Commit

Permalink
Replace cfuture with minifuture (#70)
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Samoilov <[email protected]>
  • Loading branch information
vyndor and Anton Samoilov authored Oct 10, 2023
1 parent 2e7863c commit 9b227cf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ The features implemented by this SDK can be found in [SDK feature matrix](https:

Library available in Maven: https://search.maven.org/artifact/io.github.centrifugal/centrifuge-java

This library depends on `streamsupport-minifuture`. In case your project has a dependency to `streamsupport-cfuture` and you have a class name conflicts, you can exclude minifuture safely. Example for Gradle:

```
implementation('io.github.centrifugal:centrifuge-java:{version}') {
exclude group: 'net.sourceforge.streamsupport', module: 'streamsupport-minifuture'
}
```

## Javadoc online

http://www.javadoc.io/doc/io.github.centrifugal/centrifuge-java
Expand Down
2 changes: 1 addition & 1 deletion centrifuge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ publishing {
dependencies {
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
implementation 'com.google.protobuf:protobuf-javalite:3.21.12'
implementation 'net.sourceforge.streamsupport:streamsupport-cfuture:1.7.0'
implementation 'net.sourceforge.streamsupport:streamsupport-minifuture:1.7.4'

testImplementation 'junit:junit:4.13.2'
}
Expand Down

0 comments on commit 9b227cf

Please sign in to comment.