Search Gradle plugins

Version 0.0.1-M1 (latest)

Created 01 April 2021.

Plugin that adds automated tasks for projects using Jamgo Framework

Using the plugins DSL:

plugins {
  id("org.jamgo.framework.plugin") version "0.0.1-M1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.jamgo:jamgo-framework-plugin:0.0.1-M1")
  }
}

apply(plugin = "org.jamgo.framework.plugin")

Using the plugins DSL:

plugins {
  id "org.jamgo.framework.plugin" version "0.0.1-M1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.jamgo:jamgo-framework-plugin:0.0.1-M1"
  }
}

apply plugin: "org.jamgo.framework.plugin"

Learn how to apply plugins to subprojects