-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
114 lines (90 loc) · 3.01 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
plugins {
id 'org.springframework.boot' version '2.5.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id "org.asciidoctor.convert" version "1.5.9.2"
id 'java'
id 'jacoco'
}
group = 'com.meme'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
jar {
enabled = false
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
jacoco{
toolVersion = "0.8.7"
}
jacocoTestReport {
reports {
html.destination file("${buildDir}/jacocoHtml")
csv.enabled false
xml.enabled false
}
finalizedBy 'jacocoTestCoverageVerification'
}
jacocoTestCoverageVerification {
violationRules {
rule {
enabled = true
element = 'CLASS'
// includes = []
limit {
counter = 'LINE'
value = 'COVEREDRATIO'
minimum = 0.00
}
excludes = []
}
}
}
ext {
//snippets dir
snippetsDir = file('build/generated-snippets')
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
asciidoctor 'org.springframework.restdocs:spring-restdocs-asciidoctor'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
implementation 'org.mapstruct:mapstruct:1.4.1.Final'
compileOnly 'org.projectlombok:lombok'
compileOnly group: 'org.projectlombok', name: 'lombok-mapstruct-binding', version: '0.2.0'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.1.Final'
implementation 'org.junit.jupiter:junit-jupiter:5.4.2'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
implementation 'com.auth0:java-jwt:3.4.1'
implementation 'org.hibernate:hibernate-validator:6.1.0.Final'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
implementation 'org.springframework.boot:spring-boot-starter-cache'
compile group: 'com.github.ben-manes.caffeine', name: 'caffeine'
implementation 'com.amazonaws:aws-java-sdk-s3:1.12.21'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '2.5.3'
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.1.RELEASE'
compile group: 'ca.pjer', name: 'logback-awslogs-appender', version: '1.4.0'
}
test {
outputs.dir snippetsDir
useJUnitPlatform()
finalizedBy 'jacocoTestReport'
}
asciidoctor {
inputs.dir snippetsDir
}
task copyDocument(type: Copy) {
dependsOn asciidoctor
from file("build/asciidoc/html5/")
into file("src/main/resources/static/docs")
}