-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathbuild.gradle
36 lines (30 loc) · 877 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
plugins {
id 'org.springframework.boot' version '1.5.3.RELEASE'
}
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'eclipse'
apply plugin: 'idea'
ext {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
jar {
baseName = 'spring-boot-scala-web'
version = '0.3.0'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.thymeleaf:thymeleaf-spring4")
compile("nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect")
testCompile("org.springframework.boot:spring-boot-starter-test")
compile("com.h2database:h2")
compile("org.scala-lang:scala-library:2.12.2")
compile("org.webjars:bootstrap:3.1.1")
}