blob: b342c0becd2da5e85dab84a87f7864518b0481a8 [file] [log] [blame]
// This file applies configuration common to projects in buildSrc
apply plugin: "kotlin"
apply plugin: "java-gradle-plugin"
buildscript {
project.ext.supportRootFolder = project.projectDir.getParentFile().getParentFile()
apply from: "../repos.gradle"
repos.addMavenRepositories(repositories)
dependencies {
classpath(libs.kotlinGradlePluginz)
}
}
dependencies {
implementation(project(":jetpad-integration"))
}
apply from: "../shared-dependencies.gradle"
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
project.tasks.withType(Jar) { task ->
task.reproducibleFileOrder = true
task.preserveFileTimestamps = false
}
validatePlugins {
enableStricterValidation = true
}