-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (37 loc) · 948 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
40
41
42
43
buildscript {
repositories {
maven { url "http://repo.spring.io/release" }
mavenCentral()
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.6.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'eclipse'
apply plugin: 'eclipse-wtp'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'hello'
version = '0.1.0'
}
bootRepackage {
mainClass = 'hello.HelloWebApplication'
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/release" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.2.1.RELEASE")
testCompile("org.springframework.boot:spring-boot-starter-test")
compile("org.scala-lang:scala-library:2.11.5")
compile("org.webjars:bootstrap:3.1.1")
testCompile("junit:junit")
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}