Skip to content

Commit c5235b1

Browse files
committed
Updated Maven packages
1 parent 26ac1a0 commit c5235b1

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

docs/setup/java.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@
44

55
Add one or more of the following Maven artifacts to your project:
66

7-
[typedrest-core](https://mvnrepository.com/artifact/com.oneandone/typedrest-core)
7+
[typedrest](https://central.sonatype.com/artifact/net.typedrest/typedrest)
88
The main TypedRest library.
99

10-
[typedrest-annotations](https://mvnrepository.com/artifact/com.oneandone/typedrest-annotations)
11-
Annotations for data models to be used with TypedRest.
10+
[typedrest-reactive](https://central.sonatype.com/artifact/net.typedrest/typedrest-reactive)
11+
Adds support for streaming with [ReactiveX (Rx)](http://reactivex.io/).
12+
Create endpoints using the types in the `net.typedrest.endpoints.reactive` package.
1213

13-
[typedrest-vaadin](https://mvnrepository.com/artifact/com.oneandone/typedrest-vaadin)
14-
Build [Vaadin](https://vaadin.com/) GUIs for TypedRest clients.
14+
[typedrest-serializers-jackson](https://central.sonatype.com/artifact/net.typedrest/typedrest-serializers-jackson)
15+
Adds support for serializing using [Jackson](https://github.com/FasterXML/jackson) instead of [kotlinx.serialization](https://kotlinlang.org/docs/serialization.html).
16+
Pass `new JacksonJsonSerializer()` to the `EntryEndpoint` constructor.
17+
18+
[typedrest-serializers-moshi](https://central.sonatype.com/artifact/net.typedrest/typedrest-serializers-moshi)
19+
Adds support for serializing using [Moshi](https://github.com/square/moshi) instead of [kotlinx.serialization](https://kotlinlang.org/docs/serialization.html).
20+
Pass `new MoshiJsonSerializer()` to the `EntryEndpoint` constructor.
1521

1622
## See also
1723

0 commit comments

Comments
 (0)