org.rightmesh.support
Owner: Ahmed Mohmmad Ullah
To support rightmesh library credentials for supporting framework
Sources: https://github.com/azimgoogle/rightmeshsupport
Version 0.3.0 (latest)
0.3.0
Created 15 August 2018.
To support rightmesh library credentials for supporting framework
Using the plugins DSL:
plugins {
id("org.rightmesh.support") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.RightMeshSupport:com.rightmesh:0.3.0")
}
}
apply(plugin = "org.rightmesh.support")
Using the plugins DSL:
plugins {
id "org.rightmesh.support" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.RightMeshSupport:com.rightmesh:0.3.0"
}
}
apply plugin: "org.rightmesh.support"