mirror of
https://github.com/google-wallet/rest-samples.git
synced 2026-01-10 13:58:14 -05:00
* Added issuer creation and permissions update examples to all templates * Generated new outputs for each template * Updated Google SDK version sfor C#, Java, PHP, and Python templates * General formatting and linting updates * Additional commenting * Added stronger typing of variables in C# and Java examples
22 lines
603 B
Groovy
22 lines
603 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'org.example'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.auth0:java-jwt:3.19.1'
|
|
implementation 'com.auth0:jwks-rsa:0.9.0'
|
|
implementation 'com.google.apis:google-api-services-oauth2:v1-rev20190313-1.30.3'
|
|
implementation 'com.google.api-client:google-api-client:2.0.0'
|
|
implementation 'com.google.auth:google-auth-library-oauth2-http:1.10.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.3.1'
|
|
implementation 'javax.json:javax.json-api:1.1'
|
|
implementation 'org.glassfish:javax.json:1.1'
|
|
}
|