forked from ProjectEKA/consent-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
79 lines (69 loc) · 2.42 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
plugins {
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'com.avast.gradle.docker-compose' version '0.10.9'
id "org.sonarqube" version "2.8"
id 'jacoco'
}
group = 'in.projecteka'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
sonarqube {
properties {
property "sonar.projectKey", "ProjectEKA_hdaf"
property "sonar.organization", "projecteka"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.login", "dd5db84dbf8f6dbd393291c26fe038ab54f00072"
property 'sonar.coverage.jacoco.xmlReportPaths', 'build/reports/jacoco/test/jacocoTestReport.xml'
}
}
dockerCompose {
useComposeFiles = ['docker-compose.yml']
}
task up(type: Exec) {
dependsOn(build)
commandLine './gradlew', 'composeUp'
}
task down(type: Exec) {
commandLine './gradlew', 'composeDown'
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-amqp'
implementation 'log4j:log4j:1.2.17'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'io.projectreactor:reactor-test'
compileOnly 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.jeasy:easy-random-core:4.2.0'
testImplementation "com.squareup.okhttp3:okhttp:4.4.1"
testImplementation "com.squareup.okhttp3:mockwebserver:4.4.1"
implementation 'com.google.guava:guava:28.2-jre'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'io.vertx:vertx-pg-client:3.8.5'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.nimbusds:nimbus-jose-jwt:8.11'
implementation 'io.vavr:vavr:0.9.3'
implementation 'org.passay:passay:1.0'
}
test {
useJUnitPlatform()
}
jacocoTestReport {
additionalSourceDirs.from = files(sourceSets.main.allJava.srcDirs)
reports {
html.enabled true
xml.enabled true
csv.enabled false
html.destination file("build/reports/jacoco/html")
}
executionData.from = files('build/jacoco/test.exec')
}