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.
28 lines
697 B
28 lines
697 B
plugins { |
|
`java-gradle-plugin` |
|
groovy |
|
} |
|
|
|
dependencies { |
|
implementation(platform("dev.nokee:nokee-gradle-plugins:0.4.0-60cff2b")) |
|
} |
|
|
|
repositories { |
|
mavenCentral() |
|
gradlePluginPortal() |
|
maven { url = uri("https://dl.bintray.com/nokeedev/distributions") } |
|
maven { url = uri("https://dl.bintray.com/nokeedev/distributions-snapshots") } |
|
} |
|
|
|
gradlePlugin { |
|
plugins { |
|
create("uber-jni-jar") { |
|
id = "uber-jni-jar" |
|
implementationClass = "UberJniJarPlugin" |
|
} |
|
create("use-prebuilt-binaries") { |
|
id = "use-prebuilt-binaries" |
|
implementationClass = "UsePrebuiltBinariesWhenUnbuildablePlugin" |
|
} |
|
} |
|
}
|
|
|