-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (46 loc) · 1.3 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
buildscript {
repositories {
mavenCentral()
}
ext {
api_implementations = ['org.springframework.boot:spring-boot-starter-web', 'org.springframework.boot:spring-boot-starter-security']
api_annotations = ['org.springframework.boot:spring-boot-configuration-processor']
api_test = []
spi_implementations = ['org.springframework.boot:spring-boot-starter-data-jpa']
spi_annotations = []
spi_test = ['org.springframework.boot:spring-boot-starter-test']
}
}
plugins {
id "org.sonarqube" version "3.5.0.2730"
}
allprojects {
group 'com.dgsw.cns'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'java-library'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
}
tasks.named('test') {
useJUnitPlatform()
}
}
sonarqube {
properties {
property "sonar.projectKey", "CNS-DGSW_ida-carnation"
property "sonar.organization", "cns-dgsw"
property "sonar.host.url", "https://sonarcloud.io"
}
}