-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle.kts
79 lines (73 loc) · 2.85 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
/*
* SonarQube Text 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()
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 = "text"
includeBuild("build-logic")
include(":sonar-text-plugin")
dependencyResolutionManagement {
repositories {
mavenCentral()
maven {
url = uri("https://repox.jfrog.io/repox/sonarsource-private-releases")
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()
}
}
}
}
}
}
// "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)
}