-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
68 lines (61 loc) · 2.26 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
plugins {
id 'org.springframework.boot' version '2.5.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'org.sonarqube' version '2.8'
}
//file("sonar-project.properties").withReader {
// Properties sonarProperties = new Properties()
// sonarProperties.load(it)
// sonarProperties.each { key, value ->
// sonarqube {
// properties {
// property key, value
// }
// }
// }
//}
//
//jacocoTestReport {
// reports {
// xml.enabled = true //required for sonarqube
// html.enabled = true // so you can check the report locally under build/reports/jacoco/test/html/index.html
// }
//}
group = 'com.eurisko'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.20'
implementation 'junit:junit:4.13.1'
implementation 'junit:junit:4.13.1'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation('org.mock-server:mockserver-netty:5.11.2')
implementation 'com.auth0:java-jwt:3.18.2'
testCompileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:2.5.5'
compileOnly 'org.projectlombok:lombok:1.18.20'
implementation 'org.mapstruct:mapstruct:1.4.2.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.5.4'
implementation 'org.springframework.boot:spring-boot-starter-security:2.5.5'
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.5'
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.5.4'
runtimeOnly 'mysql:mysql-connector-java:8.0.25'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.5'
testImplementation 'org.springframework.security:spring-security-test:5.5.1'
testImplementation('org.junit.jupiter:junit-jupiter-api:5.8.1')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.8.1')
}
test {
useJUnitPlatform()
}