com.williambl.bluej_jar.bluej-jar
Owner: Will BL
Creates JAR files which are valid BlueJ project archives
https://github.com/kcloss/gradle-bluej-jar
Sources: https://github.com/kcloss/gradle-bluej-jar
Version 0.1 (latest)
Created 25 October 2021.
Creates JAR files which are valid BlueJ project archives
Add this plugin to your build using the plugins DSL:
plugins {
id("com.williambl.bluej_jar.bluej-jar") version "0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.williambl.bluej_jar.bluej-jar:com.williambl.bluej_jar.bluej-jar.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.williambl.bluej_jar.bluej-jar") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.williambl.bluej_jar.bluej-jar:com.williambl.bluej_jar.bluej-jar.gradle.plugin:0.1") } } apply(plugin = "com.williambl.bluej_jar.bluej-jar")
- Applying plugins to all subprojects .