• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

<lambda>null1 plugins {
2   `kotlin-dsl`
3   `java-gradle-plugin`
4 }
5 
<lambda>null6 repositories {
7   mavenCentral()
8 }
9 
<lambda>null10 dependencies {
11   add("compileOnly", kotlin("gradle-plugin"))
12   add("compileOnly", kotlin("gradle-plugin-api"))
13 }
14 
<lambda>null15 gradlePlugin {
16   plugins {
17     create("build-support") {
18       id = "build-support"
19       implementationClass = "BuildSupport"
20     }
21   }
22 }
23 
<lambda>null24 dependencies {
25   implementation(libs.kotlin.gradle.plugin)
26 }
27