1Adapters 2=================== 3 4Prebuilt Moshi `JsonAdapter`s for various things, such as `Rfc3339DateJsonAdapter` for parsing `java.util.Date`s 5 6To use, supply an instance of your desired converter when building your `Moshi` instance. 7 8```java 9Moshi moshi = new Moshi.Builder() 10 .add(Date.class, new Rfc3339DateJsonAdapter()) 11 //etc 12 .build(); 13``` 14 15Download 16-------- 17 18Download [the latest JAR][1] or grab via [Maven][2]: 19```xml 20<dependency> 21 <groupId>com.squareup.moshi</groupId> 22 <artifactId>moshi-adapters</artifactId> 23 <version>latest.version</version> 24</dependency> 25``` 26or [Gradle][2]: 27```groovy 28implementation 'com.squareup.moshi:moshi-adapters:latest.version' 29``` 30 31Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. 32 33 34 35 [1]: https://search.maven.org/remote_content?g=com.squareup.moshi&a=moshi-adapters&v=LATEST 36 [2]: http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.squareup.moshi%22%20a%3A%22moshi-adapters%22 37 [snap]: https://oss.sonatype.org/content/repositories/snapshots/com/squareup/moshi/moshi-adapters/ 38