-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (25 loc) · 839 Bytes
/
build.gradle
File metadata and controls
34 lines (25 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
plugins {
id 'java'
id 'maven'
}
group 'com.uddernetworks.paintassist'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
google()
}
dependencies {
compile 'com.google.apis:google-api-services-oauth2:v2-rev131-1.23.0'
compile 'com.google.http-client:google-http-client-jackson2:1.23.0'
compile 'com.google.oauth-client:google-oauth-client-jetty:1.23.0'
compile 'com.google.firebase:firebase-admin:6.8.1'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.25'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
wrapper {
gradleVersion = "5.1.1"
distributionType = Wrapper.DistributionType.ALL
}