com.lazan.javaflavours
Owner: Lance Java
Android style flavours in a java project
https://github.com/uklance/gradle-java-flavours
Sources: https://github.com/uklance/gradle-maven-share.git
Version 1.2 (latest)
Created 27 February 2017.
Android style flavours in a java project
Add this plugin to your build using the plugins DSL:
plugins {
id("com.lazan.javaflavours") version "1.2"
}
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.lazan.javaflavours:com.lazan.javaflavours.gradle.plugin:1.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.lazan.javaflavours") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.lazan.javaflavours:com.lazan.javaflavours.gradle.plugin:1.2") } } apply(plugin = "com.lazan.javaflavours")
- Applying plugins to all subprojects .