-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
45 lines (39 loc) · 1.34 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
plugins {
id 'org.springframework.boot' version '2.6.4' apply false
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id "org.sonarqube" version "3.3"
id 'java'
}
group = 'net.defmsy'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
dependencyManagement {
imports {
mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'commons-codec:commons-codec:1.15'
testCompileOnly 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.32.0'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.assertj:assertj-core:3.22.0'
}
test {
useJUnitPlatform()
}
sonarqube {
properties {
property "sonar.projectKey", "defmsy_spring-boot-starter-binance-reactive-client"
property "sonar.organization", "defmsy"
property "sonar.host.url", "https://sonarcloud.io"
}
}