-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (32 loc) · 840 Bytes
/
build.gradle
File metadata and controls
40 lines (32 loc) · 840 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
35
36
37
38
39
40
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
}
repositories {
jcenter()
mavenCentral()
}
}
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven-central.storage.googleapis.com' // Google's mirror of Maven Central
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
repositories {
jcenter()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.4.2.RELEASE")
compile 'com.google.firebase:firebase-admin:4.0.1'
compile 'org.slf4j:slf4j-api:1.7.21'
testCompile 'junit:junit:4.12'
}
//bootRun.doFirst {
// println("Setting env variable")
// environment 'GOOGLE_APPLICATION_CREDENTIALS', 'google-services.json'
//}