Search Gradle plugins

Version 0.2.0-SNAPSHOT

Created 08 December 2016.

Greetings from here!

Using the plugins DSL:

plugins {
  id("io.github.hippoom.artifact") version "0.2.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.hippoom:artifact-gradle-plugin:0.2.0-SNAPSHOT")
  }
}

apply(plugin = "io.github.hippoom.artifact")

Using the plugins DSL:

plugins {
  id "io.github.hippoom.artifact" version "0.2.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.hippoom:artifact-gradle-plugin:0.2.0-SNAPSHOT"
  }
}

apply plugin: "io.github.hippoom.artifact"

Learn how to apply plugins to subprojects