This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.some.api.support; | |
import com.some.domain.User; | |
public class AuthenticationResult { | |
private String token; | |
private User user; | |
public String getToken() { | |
return token; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
This is a quick and dirty script to parse SdkConfig.java from the | |
Robolectric sources on GitHub to determine the list of dependencies we need | |
to use the Robolectric Test Runner in offline mode. It then generates a Maven | |
pom.xml file that can be used to download all the necessary depedenency jars | |
from maven central. | |
Author: @codeblast |