-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
49 lines (41 loc) · 1.11 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
plugins {
id "java"
id "maven-publish"
id "org.sonarqube" version "4.4.1.3373"
id "io.freefair.lombok" version "8.6"
}
group = "nl.dannyj"
version = "1.0.1"
repositories {
mavenCentral()
}
dependencies {
implementation "com.squareup.okhttp3:okhttp:4.12.0"
implementation "com.fasterxml.jackson.core:jackson-databind:2.16.1"
implementation "jakarta.validation:jakarta.validation-api:3.1.0-M1"
implementation "org.hibernate.validator:hibernate-validator:8.0.1.Final"
implementation "org.glassfish.expressly:expressly:5.0.0"
implementation "com.squareup.okio:okio:3.8.0"
testImplementation platform("org.junit:junit-bom:5.9.1")
testImplementation "org.junit.jupiter:junit-jupiter"
}
java {
sourceCompatibility = "17"
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
test {
useJUnitPlatform()
}
sonar {
properties {
property "sonar.projectKey", "Dannyj1_mistral-java-client"
property "sonar.organization", "danny1"
property "sonar.host.url", "https://sonarcloud.io"
}
}