Search Gradle plugins

Version 1.0.1 (latest)

Created 29 April 2021.

Theme concatenation via gradle plugin

Using the plugins DSL:

plugins {
  id("com.github.ouchadam.themr") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ouchadam:themr:1.0.1")
  }
}

apply(plugin = "com.github.ouchadam.themr")

Using the plugins DSL:

plugins {
  id "com.github.ouchadam.themr" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ouchadam:themr:1.0.1"
  }
}

apply plugin: "com.github.ouchadam.themr"

Learn how to apply plugins to subprojects