Search Gradle plugins

Version 1.2.1

Created 28 January 2021.

This plugin automatically adds dependencies related to CameraX and MLKit.

Using the plugins DSL:

plugins {
  id("com.gamechangesns.gc_nboard_upass_huawei_test") version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gamechangesns:gc-nboard-upass-huawei-test:1.2.1")
  }
}

apply(plugin = "com.gamechangesns.gc_nboard_upass_huawei_test")

Using the plugins DSL:

plugins {
  id "com.gamechangesns.gc_nboard_upass_huawei_test" version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gamechangesns:gc-nboard-upass-huawei-test:1.2.1"
  }
}

apply plugin: "com.gamechangesns.gc_nboard_upass_huawei_test"

Learn how to apply plugins to subprojects