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 1.0.0 (latest)

Created 30 December 2020.

A plugin that helps your app build with source as subproject

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects