mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
13 lines
203 B
Kotlin
13 lines
203 B
Kotlin
plugins {
|
|
`plugin-conventions`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":plugin:common"))
|
|
compileOnly(libs.gradle.api.get69())
|
|
}
|
|
|
|
tasks.shadowJar {
|
|
archiveFileName = "plugin-base.jar"
|
|
}
|