Search Gradle plugins

org.example.mendchilgee

Owner: bbn

Chamtai mendchilne, bas bayartai gej helne

Sources: github.com

Version 5.2.1 (latest)

Created 11 July 2018.

Chamtai mendchilne, bas bayartai gej helne

Using the plugins DSL:

plugins {
  id("org.example.mendchilgee") version "5.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.example.mendchilgee:buildSrc:0.1.1")
  }
}

apply(plugin = "org.example.mendchilgee")

Using the plugins DSL:

plugins {
  id "org.example.mendchilgee" version "5.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.example.mendchilgee:buildSrc:0.1.1"
  }
}

apply plugin: "org.example.mendchilgee"

Learn how to apply plugins to subprojects