-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
43 lines (37 loc) · 1.18 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
import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
id "application"
id "org.jetbrains.dokka" version "${dokkaVersion}"
id "org.jetbrains.kotlin.jvm" version "${jetbrainKotlinVersion}"
id "org.jetbrains.kotlin.plugin.spring" version "${jetbrainKotlinVersion}"
id "org.springframework.boot" version "${springbootVersion}" apply false
id "io.spring.dependency-management" version "${springDependencyManagementVersion}"
id "org.sonarqube" version "${sonarcloudVersion}"
id "signing"
id "maven-publish"
}
group = "${group}"
version = "${version}"
archivesBaseName = "netx"
sourceCompatibility = "${compatibility}"
targetCompatibility = "${compatibility}"
repositories {
mavenCentral()
}
dependencyManagement {
imports {
mavenBom SpringBootPlugin.BOM_COORDINATES
}
}
apply from: "gradle/streams.gradle"
apply from: "gradle/test.gradle"
apply from: "gradle/core.gradle"
apply from: "gradle/sonar.gradle"
apply from: "gradle/kotlin.gradle"
apply from: "gradle/spring.gradle"
apply from: "gradle/docs.gradle"
apply from: "gradle/publish.gradle"
wrapper {
gradleVersion = "8.7"
distributionType = Wrapper.DistributionType.ALL
}