summaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
blob: 2f8c46a0b77a796a6ecd75b549898617b45da2ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
    `kotlin-dsl`
}

repositories {
    gradlePluginPortal()
}

val lombokPluginVersion = "8.6"
val jlinkPluginVersion = "3.0.1"

dependencies {
    implementation("io.freefair.gradle:lombok-plugin:$lombokPluginVersion")
    implementation("org.beryx:badass-jlink-plugin:$jlinkPluginVersion")
}