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)
0.0.03
Created 21 February 2023.
This plugin converts the trustbadge-config.json file for Trustbadge into a set of resources that the Trustbadge library can use.
Using the plugins DSL:
plugins {
id("de.trustedshops.gradle.trustbadge.config.produce") version "0.0.03"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.trustedshops.gradle.trustbadge:trustbadge-gradle-plugin:0.0.03")
}
}
apply(plugin = "de.trustedshops.gradle.trustbadge.config.produce")
Using the plugins DSL:
plugins {
id "de.trustedshops.gradle.trustbadge.config.produce" version "0.0.03"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.trustedshops.gradle.trustbadge:trustbadge-gradle-plugin:0.0.03"
}
}
apply plugin: "de.trustedshops.gradle.trustbadge.config.produce"