forked from ProjectEKA/consent-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
89 lines (77 loc) · 2.71 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
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'com.avast.gradle.docker-compose' version '0.12.1'
id "org.sonarqube" version "3.0"
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'
}
task bootRunLocal {
bootRun.configure {
systemProperty "spring.profiles.active", 'local'
}
}
bootRunLocal.finalizedBy bootRun
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-amqp'
implementation 'javax.validation:validation-api:2.0.1.Final'
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.7.2"
testImplementation "com.squareup.okhttp3:mockwebserver:4.7.2"
implementation 'com.google.guava:guava:29.0-jre'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'io.vertx:vertx-pg-client:3.9.0'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'com.nimbusds:nimbus-jose-jwt:8.19'
implementation 'io.vavr:vavr:0.10.3'
implementation 'org.passay:passay:1.6.0'
implementation 'io.lettuce:lettuce-core:5.3.1.RELEASE'
implementation 'net.logstash.logback:logstash-logback-encoder:6.4'
}
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')
}