Skip to content

Instantly share code, notes, and snippets.

@jaredsburrows
jaredsburrows / JsonApiConverter.java
Created December 15, 2015 09:33 — forked from Gregadeaux/JsonApiConverter.java
JSONAPI Converter for RetroFit with RxJava and RetroLambda
package ai.cometandroid.network;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.internal.LinkedHashTreeMap;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
@jaredsburrows
jaredsburrows / gist:fced94509051888022e9
Created October 24, 2015 00:22 — forked from kriegerd/gist:4688748
Multi artifact UploadArchives from a Gradle build file.
artifacts {
archives file: 'A.jar', name: 'A', type: 'jar'
archives file: 'B.jar', name: 'B', type: 'jar'
}
uploadArchives {
repositories {
mavenDeployer {
configuration = configurations.deployerJars
repository(url: "dav:https://myRepo.com/release/") {