-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle.kts
69 lines (61 loc) · 2.15 KB
/
settings.gradle.kts
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
63
64
65
66
67
68
69
/*
* SonarQube IaC Plugin
* Copyright (C) 2021-2024 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("com.diffplug.blowdryerSetup") version "1.7.1"
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "iac"
includeBuild("build-logic")
include(":iac-extensions")
include(":sonar-helm-for-iac")
include(":sonar-iac-plugin")
include(":iac-common")
include(":iac-extensions:terraform")
include(":iac-extensions:docker")
include(":iac-extensions:kubernetes")
include(":iac-extensions:arm")
include(":iac-extensions:cloudformation")
include(":iac-extensions:jvm-framework-config")
gradle.allprojects {
// this value is present on CI
val buildNumber: String? = System.getProperty("buildNumber")
project.extra["buildNumber"] = buildNumber
val version = properties["version"] as String
if (version.endsWith("-SNAPSHOT") && buildNumber != null) {
val versionSuffix = if (version.count { it == '.' } == 1) ".0.$buildNumber" else ".$buildNumber"
project.version =
version.replace("-SNAPSHOT", versionSuffix).also {
logger.lifecycle("Project ${project.name} version set to $it")
}
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
// "extraSettings.gradle" should not be renamed "settings.gradle" to not create a wrong project rootDir
var extraSettings = File(rootDir, "private/extraSettings.gradle.kts")
if (extraSettings.exists()) {
apply(extraSettings)
}