-
Notifications
You must be signed in to change notification settings - Fork 104
/
settings.gradle.kts
93 lines (86 loc) · 2.97 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* SonarQube PHP Plugin
* Copyright (C) 2010-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()
maven {
name = "artifactory"
url = uri("https://repox.jfrog.io/repox/sonarsource")
val artifactoryUsername =
providers.environmentVariable("ARTIFACTORY_PRIVATE_USERNAME")
.orElse(providers.gradleProperty("artifactoryUsername"))
val artifactoryPassword =
providers.environmentVariable("ARTIFACTORY_PRIVATE_PASSWORD")
.orElse(providers.gradleProperty("artifactoryPassword"))
if (artifactoryUsername.isPresent && artifactoryPassword.isPresent) {
authentication {
credentials {
username = artifactoryUsername.get()
password = artifactoryPassword.get()
}
}
}
}
}
}
plugins {
id("com.diffplug.blowdryerSetup") version "1.7.1"
}
rootProject.name = "php"
includeBuild("build-logic")
include(":sonar-php-plugin")
include(":php-frontend")
include(":php-checks")
include(":php-custom-rules-plugin")
include(":its:plugin")
include(":its:ruling")
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()
maven {
url = uri("https://repox.jfrog.io/repox/sonarsource")
val artifactoryUsername =
providers.environmentVariable("ARTIFACTORY_PRIVATE_USERNAME")
.orElse(providers.gradleProperty("artifactoryUsername"))
val artifactoryPassword =
providers.environmentVariable("ARTIFACTORY_PRIVATE_PASSWORD")
.orElse(providers.gradleProperty("artifactoryPassword"))
if (artifactoryUsername.isPresent && artifactoryPassword.isPresent) {
authentication {
credentials {
username = artifactoryUsername.get()
password = artifactoryPassword.get()
}
}
}
}
}
}