aboutsummaryrefslogtreecommitdiffstats
path: root/buildSrc/build.gradle.kts
blob: 7a5ee5c4f5362e67b651654f44857eade0b09b5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
plugins {
	`kotlin-dsl`
	// Workaround for https://github.com/gradle/gradle/issues/22797
	@Suppress("DSL_SCOPE_VIOLATION")
	alias(libs.plugins.versions)
}

repositories {
	gradlePluginPortal()
	mavenCentral()
}

dependencies {
	implementation(libs.gradlePlugin.frontend)
	implementation(libs.gradlePlugin.shadow)
	implementation(libs.gradlePlugin.sonarqube)
    // https://github.com/gradle/gradle/issues/15383
    implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
}