--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengi...@googlegroups.com.
To post to this group, send email to google-a...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.
String certificate = "/someuniqueid-privatekey.p12";
File privateKey = new File(getClass().getResource(certificate).toURI());
...
builder.setServiceAccountPrivateKeyFromP12File(privateKey);
In this example, the p12 file is in our src/main/resources.