-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (24 loc) · 762 Bytes
/
build.gradle
File metadata and controls
30 lines (24 loc) · 762 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
plugins {
id 'org.springframework.boot' version '1.5.6.RELEASE'
}
apply plugin: 'war'
sourceCompatibility = 1.8
targetCompatibility = 1.8
war {
baseName = 'todo'
version = '1.0.0'
}
apply from: "$rootDir/gradle/integration-test.gradle"
apply from: "$rootDir/gradle/deploy.gradle"
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
runtime('com.h2database:h2')
runtime('javax.servlet:jstl')
providedRuntime('org.springframework.boot:spring-boot-starter-tomcat')
providedRuntime('org.apache.tomcat.embed:tomcat-embed-jasper')
testCompile('org.springframework.boot:spring-boot-starter-test')
}