-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (33 loc) · 1.02 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
plugins {
id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'org.sonarqube' version '3.3'
id 'java'
}
group = 'io.skyshard'
version = '0.0.1-SNAPSHOT'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
maven { url 'https://repo.spring.io/release' }
mavenCentral()
}
sonarqube {
properties {
property "sonar.projectKey", group
property "sonar.sourceEncoding", "UTF-8"
property "sonar.host.url", System.getenv("SONAR_HOST")
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.bytedeco:javacv-platform:1.5.6'
implementation 'org.bytedeco:opencv-platform:4.5.1-1.5.5'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
}