Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Add the following Maven/Gradle dependencies:
| [JAX-RS client](https://jersey.java.net/documentation/latest/client.html) integration for HTTP calls with fibers. | `co.paralleluniverse:comsat-jax-rs-client:0.7.0`
| [ApacheHttpClient](http://hc.apache.org/httpcomponents-client-ga/) integration for HTTP calls with fibers. | `co.paralleluniverse:comsat-httpclient:0.7.0`
| [Retrofit](http://square.github.io/retrofit/) integration with fibers. | `co.paralleluniverse:comsat-retrofit:0.7.0`
| [Jackson](https://github.com/FasterXML/jackson-databind) supports suspendable I/O via Stream/Reader/Writer | `co.paralleluniverse:comsat-jackson:0.7.1-SNAPSHOT`
| [JDBI](http://jdbi.org/) integration with fibers. | `co.paralleluniverse:comsat-jdbi:0.7.0`
| JDBC integration with fibers. | `co.paralleluniverse:comsat-jdbc:0.7.0`
| [jOOQ](http://www.jooq.org/) integration with fibers. | `co.paralleluniverse:comsat-jooq:0.7.0`
Expand Down
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ subprojects {
ext.undertowVer = '1.3.19.Final'
ext.nettyVer = '4.0.36.Final'

ext.jacksonVer = '2.9.2'

ext.osgiVer = '6.0.0'
ext.jerseyVer = '2.22.2'
ext.hk2apiVer = '2.4.0'
Expand Down Expand Up @@ -347,6 +349,13 @@ project (':comsat-httpclient') {
}
}

project (':comsat-jackson') {
dependencies {
compile "com.fasterxml.jackson.core:jackson-core:$jacksonVer"
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVer"
}
}

project (':comsat-jax-rs-client') {
dependencies {
compile "javax.ws.rs:javax.ws.rs-api:$jaxrsVer"
Expand Down
Loading