-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
39 lines (33 loc) · 984 Bytes
/
build.gradle
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
buildscript {
ext {
springBootVersion = '1.2.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
jar {
baseName = 'velocityPreview'
version = '0.0.1'
}
repositories {
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
compile "org.springframework.boot:spring-boot-starter-web:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-actuator:${springBootVersion}"
compile "org.springframework.boot:spring-boot-starter-velocity:${springBootVersion}"
compile 'org.webjars:jquery:1.11.1'
compile 'org.webjars:bootswatch-paper:3.3.1+2'
compile 'org.webjars:ace:01.08.2014'
compile 'org.webjars:lodash:2.4.1-6'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
}