forked from kafbat/kafka-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (52 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
plugins {
alias(libs.plugins.nexus.publish.plugin)
alias(libs.plugins.sonarqube)
}
subprojects {
if (name != "frontend") {
apply plugin: "java"
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
}
repositories {
mavenCentral()
maven {
name = 'confluent'
url = 'https://packages.confluent.io/maven/'
}
}
group = 'io.kafbat'
version = version
}
boolean resolveBooleanProperty(String propertyName, boolean defaultValue = false) {
def propertyValueStr = findProperty(propertyName)
return propertyValueStr == null ? defaultValue : propertyValueStr.toBoolean()
}
ext {
release = resolveBooleanProperty("release")
includeFrontend = resolveBooleanProperty("include-frontend", release)
buildDockerImages = resolveBooleanProperty("build-docker-images", release)
runE2e = resolveBooleanProperty("run-e2e")
}
sonar {
properties {
property "sonar.projectKey", "kafbat_kafka-ui"
property "sonar.organization", "kafbat"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.exclusions", "**/e2e-tests/**/*"
}
}
if (release) {
nexusPublishing {
repositories {
sonatype {
nexusUrl = uri("https://s01.oss.sonatype.org/service/local/")
snapshotRepositoryUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
username = sonatypeUsername
password = sonatypePassword
}
}
}
}