de.trustedshops.gradle.trustbadge.config.produce
Owner:
Ali Kabiri
This plugin converts the trustbadge-config.json file for Trustbadge into a set of resources that the Trustbadge library can use.
https://github.com/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin
Sources: https://github.com/trustedshops-public/etrusted-android-trustbadge-library-config-gradle-plugin.git
Version 0.0.03 (latest)
Created 21 February 2023.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.trustedshops.gradle.trustbadge.config.produce") version "0.0.03"
}
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("de.trustedshops.gradle.trustbadge.config.produce:de.trustedshops.gradle.trustbadge.config.produce.gradle.plugin:0.0.03") }
It can then be applied in the precompiled script plugin:plugins { id("de.trustedshops.gradle.trustbadge.config.produce") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.trustedshops.gradle.trustbadge.config.produce:de.trustedshops.gradle.trustbadge.config.produce.gradle.plugin:0.0.03") } } apply(plugin = "de.trustedshops.gradle.trustbadge.config.produce")
- Applying plugins to all subprojects .