-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbuild.gradle
More file actions
73 lines (62 loc) · 1.83 KB
/
build.gradle
File metadata and controls
73 lines (62 loc) · 1.83 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE'
}
}
repositories {
mavenCentral()
mavenLocal()
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = "gamification"
version = "0.1.0"
}
group = 'juja'
description = "gamification"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
test.testLogging {
events "skipped", "failed"
exceptionFormat "SHORT"
showStandardStreams = true
}
test {
filter{
includeTestsMatching "juja.microservices.gamification.*"
}
afterTest { desc, result ->
println "Executing test ${desc.name} [${desc.className}] with result: ${result.resultType}"
}
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: 'spring-boot-starter-tomcat'
}
compile 'org.apache.httpcomponents:httpclient:4.5.3'
compile 'org.springframework.boot:spring-boot-starter-jetty'
compile 'org.springframework.boot:spring-boot-starter-data-mongodb'
compile 'commons-lang:commons-lang:2.6'
compile 'javax.inject:javax.inject:1'
compile 'org.projectlombok:lombok:1.16.10'
compile 'io.springfox:springfox-swagger2:2.6.1'
compile 'io.springfox:springfox-swagger-ui:2.6.1'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'com.github.fakemongo:fongo:2.0.10'
testCompile 'com.lordofthejars:nosqlunit-mongodb:0.8.1'
testCompile 'io.rest-assured:rest-assured:3.0.2'
testCompile 'net.javacrumbs.json-unit:json-unit-fluent:1.19.0'
testCompile 'org.skyscreamer:jsonassert:1.4.0'
}
task wrapper(type: Wrapper) {
gradleVersion = '3.3'
}