Search Gradle plugins

Version 0.0.03 (latest)

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"

Learn how to apply plugins to subprojects