Search Gradle plugins

com.github.ohmex.grdp

A plugin that helps your app build with source as subproject

https://github.com/ohmex/grdp

Sources: https://github.com/ohmex/grdp.git

Version 0.0.3

Created 02 August 2019.

A plugin that helps your app build with source as subproject

Using the plugins DSL:

plugins {
  id("com.github.ohmex.grdp") version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ohmex.grdp:grdp:0.0.3")
  }
}

apply(plugin = "com.github.ohmex.grdp")

Using the plugins DSL:

plugins {
  id "com.github.ohmex.grdp" version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ohmex.grdp:grdp:0.0.3"
  }
}

apply plugin: "com.github.ohmex.grdp"

Learn how to apply plugins to subprojects