Search Gradle plugins

com.m800.sdk

Owner: M800 RnD

A required plugin to make the M800 SDK(s) integration seamless.

https://m800.com/

Sources: https://docs.m800.com/

Version 0.1 (latest)

Created 16 July 2019.

A required plugin to make the M800 SDK(s) integration seamless.

Using the plugins DSL:

plugins {
  id("com.m800.sdk") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.m800.sdk:m800-services:0.1")
  }
}

apply(plugin = "com.m800.sdk")

Using the plugins DSL:

plugins {
  id "com.m800.sdk" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.m800.sdk:m800-services:0.1"
  }
}

apply plugin: "com.m800.sdk"

Learn how to apply plugins to subprojects