forked from rosatolen/campr-csrf-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (32 loc) · 1.09 KB
/
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
version = "1.0"
apply plugin: 'java'
apply plugin: 'spring-boot'
apply plugin: 'idea'
sourceCompatibility = 1.7
buildscript {
ext.versions = [
springBootVersion: "1.2.1.RELEASE"
]
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${versions.springBootVersion}")
}
}
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:${versions.springBootVersion}") {
exclude module: "spring-boot-starter-tomcat"
}
compile("org.springframework.boot:spring-boot-starter-jetty:${versions.springBootVersion}")
compile("org.springframework.boot:spring-boot-starter-actuator:${versions.springBootVersion}")
compile("commons-io:commons-io:2.4")
compile("commons-codec:commons-codec:1.10")
compile 'org.apache.httpcomponents:httpclient:4.5.1'
compile "org.apache.derby:derby:10.11.1.1"
testCompile "junit:junit:4.12"
testCompile "org.springframework.boot:spring-boot-starter-test:${versions.springBootVersion}"
}