Search Gradle plugins

com.m800.sdk.m800-services

Owner: M800 RnD

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

https://m800.com/

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

Version 1.0

Created 18 July 2019.

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

Using the plugins DSL:

plugins {
  id("com.m800.sdk.m800-services") version "1.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.m800.sdk.m800-services" version "1.0"
}

Using legacy plugin application:

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

apply plugin: "com.m800.sdk.m800-services"

Learn how to apply plugins to subprojects