-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
219 lines (164 loc) · 5.53 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
plugins {
id 'org.springframework.boot' version '2.3.0.M4'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
// expand variables defined in dotenv
id "co.uzzu.dotenv.gradle" version "1.1.0"
id "com.diffplug.gradle.spotless" version "3.30.0"
id 'jacoco'
id "org.sonarqube" version "2.8"
}
group = 'tech.gruppone.stalker'
version = '1.0.0'
sourceCompatibility = '11'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
dependencies {
// Supports built in (or custom) endpoints that let you monitor and manage your application - such as application health, metrics, sessions, etc.
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Provides Reactive Relational Database Connectivity to persist data in SQL stores using Spring Data in reactive applications.
implementation 'org.springframework.boot:spring-boot-starter-data-r2dbc'
// Send email using Java Mail and Spring Framework's JavaMailSender.
implementation 'org.springframework.boot:spring-boot-starter-mail'
// Build reactive web applications with Spring WebFlux and Netty.
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// Highly customizable authentication and access-control framework for Spring applications.
// implementation 'org.springframework.boot:spring-boot-starter-security'
// Java annotation library which helps to reduce boilerplate code.
compileOnly 'org.projectlombok:lombok'
// Provides fast application restarts, LiveReload, and configurations for enhanced development experience.
developmentOnly 'org.springframework.boot:spring-boot-devtools'
// MySQL JDBC and R2DBC driver.
implementation 'dev.miku:r2dbc-mysql:0.8.1.RELEASE'
// Provides support for JSON web Token
implementation 'io.jsonwebtoken:jjwt-api:0.11.1'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.1'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.1'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.1'
// Generate metadata for developers to offer contextual help and "code completion" when working with custom configuration keys (ex.application.properties/.yml files).
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'io.projectreactor:reactor-test'
//testImplementation 'org.springframework.security:spring-security-test'
// ---------------------------------------------------------------------------------
// influxdb 1.x java client
implementation 'org.influxdb:influxdb-java:2.17'
// ---------------------------------------------------------------------------------
// LDAP client
implementation 'org.apache.directory.api:api-all:2.0.1'
}
test {
useJUnitPlatform()
failFast = false
finalizedBy {
jacocoTestReport
}
}
processResources {
filesMatching('application.properties') {
expand(project.properties)
}
}
// this fails if the variables are not present
ext {
mysqlRootPassword = "${env.MYSQL_ROOT_PASSWORD.value}"
influxdbAdminPassword = "${env.INFLUXDB_ADMIN_PASSWORD.value}"
jwtSecret = "${env.JWT_SECRET.value}"
emailAccountPassword = "${env.EMAIL_ACCOUNT_PASSWORD.value}"
}
tasks.register("printCurrentSecrets") {
doLast {
println "MYSQL_ROOT_PASSWORD: ${env.MYSQL_ROOT_PASSWORD.value}"
println "INFLUXDB_ADMIN_PASSWORD: ${env.INFLUXDB_ADMIN_PASSWORD.value}"
println "JWT_SECRET: ${env.JWT_SECRET.value}"
println "EMAIL_ACCOUNT_PASSWORD: ${env.EMAIL_ACCOUNT_PASSWORD.value}"
}
}
// ===============================
// = FORMATTING
// ===============================
spotless {
// already enforced with a different method
enforceCheck false
java {
target '**/*.java'
googleJavaFormat("1.7")
endWithNewline()
removeUnusedImports()
trimTrailingWhitespace()
}
encoding 'UTF-8'
lineEndings("UNIX")
}
// ===============================
// = LINTERS
// ===============================
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs = [
'-Xlint:all',
'-Xlint:-processing',
'-Werror'
]
}
// TODO add checkstyle plugin configuration
// ===============================
// = TESTING AND COVERAGE
// ===============================
jacocoTestReport {
reports {
xml.enabled true
csv.enabled false
html.enabled true
}
dependsOn {
test
}
}
jacocoTestCoverageVerification {
violationRules {
rule {
limit {
minimum = 0.8
}
}
}
dependsOn {
jacocoTestReport
}
}
// check {
// dependsOn {
// jacocoTestCoverageVerification
// }
// }
// ===============================
// = SONARCLOUD
// ===============================
sonarqube {
properties {
property "sonar.sourceEncoding", "UTF-8"
property "sonar.projectName", "stalker-server"
property "sonar.projectKey", "GruppOne_stalker-server"
property "sonar.organization", "grupp-one"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.login", "${env.SONARCLOUD_LOGIN.orNull()}"
property 'sonar.coverage.jacoco.xmlReportPaths', "${buildDir}/reports/jacoco/test/jacocoTestReport.xml"
}
}
tasks.findByName('sonarqube').mustRunAfter('check')
tasks.findByName('test').mustRunAfter('spotlessApply')