-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle.kts
86 lines (78 loc) · 3.52 KB
/
build.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
/*
* 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/
*/
import org.sonarsource.text.registerRuleApiTasks
plugins {
alias(libs.plugins.spotless)
id("org.sonarsource.text.artifactory-configuration")
id("org.sonarsource.text.rule-api")
id("org.sonarsource.text.sonarqube")
id("com.diffplug.blowdryer")
}
tasks.artifactoryPublish { skip = true }
artifactoryConfiguration {
artifactsToPublish = "org.sonarsource.text:sonar-text-plugin:jar"
artifactsToDownload = ""
repoKeyEnv = "ARTIFACTORY_DEPLOY_REPO"
usernameEnv = "ARTIFACTORY_DEPLOY_USERNAME"
passwordEnv = "ARTIFACTORY_DEPLOY_PASSWORD"
}
val kotlinGradleDelimiter = "(package|import|plugins|pluginManagement|dependencyResolutionManagement|repositories) "
spotless {
// Mainly used to define spotless configuration for the build-logic
encoding(Charsets.UTF_8)
java {
target("/build-logic/src/**/*.java")
licenseHeaderFile(rootProject.file("LICENSE_HEADER")).updateYearWithLatest(true)
}
kotlinGradle {
ktlint().setEditorConfigPath("$rootDir/.editorconfig")
target("*.gradle.kts", "build-logic/*.gradle.kts", "/build-logic/src/**/*.gradle.kts")
licenseHeaderFile(
rootProject.file("LICENSE_HEADER"),
kotlinGradleDelimiter
).updateYearWithLatest(true)
}
kotlin {
ktlint().setEditorConfigPath("$rootDir/.editorconfig")
target("/build-logic/src/**/*.kt")
licenseHeaderFile(rootProject.file("LICENSE_HEADER")).updateYearWithLatest(true)
}
format("javaMisc") {
target("/build-logic/src/**/package-info.java")
licenseHeaderFile(rootProject.file("LICENSE_HEADER"), "@javax.annotation").updateYearWithLatest(true)
}
}
registerRuleApiTasks("Secrets", file("$projectDir/sonar-text-plugin/sonarpedia-secrets"))
registerRuleApiTasks("Text", file("$projectDir/sonar-text-plugin/sonarpedia-text"))
tasks.register("ruleApiUpdate") {
description = "Update ALL rules description"
group = "Rule API"
dependsOn("ruleApiUpdateSecrets", "ruleApiUpdateText")
}
sonar {
properties {
properties["sonar.sources"] as MutableCollection<String> +=
gradle.includedBuild("build-logic").projectDir.resolve("src/main/java").toString()
val binaries = properties["sonar.java.binaries"] as? MutableCollection<String> ?: mutableSetOf()
properties["sonar.java.binaries"] = binaries +
gradle.includedBuild("build-logic").projectDir.resolve("build/classes/java/main").toString()
val libraries = properties["sonar.java.libraries"] as? MutableCollection<String> ?: mutableSetOf()
properties["sonar.java.libraries"] = libraries + buildscript.configurations.getByName("classpath")
properties["sonar.coverage.jacoco.xmlReportPaths"] =
gradle.includedBuild("build-logic").projectDir.resolve("build/reports/jacoco/test/jacocoTestReport.xml").toString()
}
}