br.com.prodist.native-tools
Owner: Pedro LamarĂ£o
Extends gradle-native with additional native tools
Sources: http://www.prodist.com.br/
Version 0.1 (latest)
Created 13 June 2018.
Extends gradle-native with additional native tools
Add this plugin to your build using the plugins DSL:
plugins {
id("br.com.prodist.native-tools") 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("br.com.prodist.native-tools:br.com.prodist.native-tools.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("br.com.prodist.native-tools") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("br.com.prodist.native-tools:br.com.prodist.native-tools.gradle.plugin:0.1") } } apply(plugin = "br.com.prodist.native-tools")
- Applying plugins to all subprojects .