aboutsummaryrefslogtreecommitdiffstats
path: root/buildSrc/src/main/kotlin/tools/refinery/gradle/skip-coverage.gradle.kts
blob: 4b84374204d6687f377a94c0fc05d9dc914d7f0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.gradle

import tools.refinery.gradle.utils.SonarPropertiesUtils

plugins {
	id("tools.refinery.gradle.sonarqube")
}

sonarqube.properties {
	SonarPropertiesUtils.addToList(properties, "sonar.coverage.exclusions", "src/main/**")
}