mirror of https://github.com/weisJ/darklaf.git
darculadarcula-themefeelguihacktoberfestintellijintellij-themelaflooklookandfeelnativesolarizedsolarized-dark-themesolarized-light-themesvgswingthemethemes
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.
32 lines
689 B
32 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" |
|
} |
|
} |
|
}
|
|
|