-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
49 lines (41 loc) · 1.12 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-library"
id "maven-publish"
id "org.sonarqube" version "6.1.0.5360"
id "io.freefair.lombok" version "8.13.1"
}
group = "nl.dannyj"
version = "1.1.0"
repositories {
mavenCentral()
}
dependencies {
implementation "com.squareup.okhttp3:okhttp:4.12.0"
implementation "com.fasterxml.jackson.core:jackson-databind:2.18.3"
implementation "jakarta.validation:jakarta.validation-api:3.1.1"
implementation "org.hibernate.validator:hibernate-validator:8.0.2.Final"
implementation "org.glassfish.expressly:expressly:5.0.0"
implementation "com.squareup.okio:okio:3.11.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"
}
}