Darklaf - A themeable swing Look and Feel based on Darcula-Laf
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
689 B

plugins {
`kotlin-dsl`
`java-gradle-plugin`
}
dependencies {
implementation(nokeeApi())
implementation(gradleApi())
}
repositories {
mavenCentral()
gradlePluginPortal()
nokee()
}
gradlePlugin {
plugins {
create("uber-jni-jar") {
id = "uber-jni-jar"
implementationClass = "UberJniJarPlugin"
}
create("use-prebuilt-binaries") {
id = "use-prebuilt-binaries"
implementationClass = "UsePrebuiltBinariesWhenUnbuildablePlugin"
}
create("apple-m1-toolchain") {
id = "apple-m1-toolchain"
implementationClass = "AppleM1ToolChainRule"
}
}
}