Hi,
I did just did a test using this simple build.gradle
apply plugin: 'java'
sourceCompatibility = 1.5
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile "org.jboss.aerogear:unifiedpush-java-client:0.5.0"
compile "org.jboss.resteasy:resteasy-jackson-provider:2.3.2.Final"
}
And it can compile withou problems using this simple class :
import org.jboss.aerogear.unifiedpush.JavaSender;
import org.jboss.aerogear.unifiedpush.SenderClient;
public class SenderWrapper {
public void SenderWrapper() {
JavaSender defaultJavaSender =
}
}
Are you sure that your gradle file has mavenCentral() enabled ?