-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (30 loc) · 842 Bytes
/
build.gradle
File metadata and controls
34 lines (30 loc) · 842 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
buildscript {
repositories {
mavenLocal();
mavenCentral();
maven { url 'http://files.boxfuse.com' }
}
dependencies {
classpath "com.boxfuse.client:boxfuse-gradle-plugin:1.8.9.673"
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.5.RELEASE")
}
}
apply plugin: 'boxfuse'
apply plugin: 'java'
apply plugin: 'spring-boot'
repositories {
mavenLocal();
mavenCentral();
maven { url 'http://files.boxfuse.com' }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("junit:junit")
testCompile "net.sourceforge.htmlunit:htmlunit:2.16"
}
boxfuse {
// Replace with your user and secret located under Client Credentials in the Boxfuse Console
// user='...'
// secret='...'
app='hello'
}