mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
21 lines
375 B
Kotlin
21 lines
375 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.gradle.publish:plugin-publish-plugin:1.2.1")
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("apply-plugin-publish") {
|
|
id = "com.example.apply-plugin-publish"
|
|
implementationClass = "com.example.ApplyPluginPublishPlugin"
|
|
}
|
|
}
|
|
}
|