all.shared.gradle.qrc-file-generator
Owner: Gonzalo Müller Bravo
QRC File Generator for QML Projects.
https://gitlab.com/gmullerb/qrc-file-generator/
Sources: https://github.com/gmullerb/qrc-file-generator/
Version 1.0.0 (latest)
Created 09 April 2019.
QRC File Generator for QML Projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("all.shared.gradle.qrc-file-generator") version "1.0.0"
}
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("all.shared.gradle.qrc-file-generator:all.shared.gradle.qrc-file-generator.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("all.shared.gradle.qrc-file-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("all.shared.gradle.qrc-file-generator:all.shared.gradle.qrc-file-generator.gradle.plugin:1.0.0") } } apply(plugin = "all.shared.gradle.qrc-file-generator")
- Applying plugins to all subprojects .