Search Gradle plugins

Version 0.6.2 (latest)

Created 03 May 2015.

just a test, do not use yet

Using the plugins DSL:

plugins {
  id("com.thomasjensen.checkstyle.packaging") version "0.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.thomasjensen.checkstyle.packaging:checkstyle-packaging:0.6.2")
  }
}

apply(plugin = "com.thomasjensen.checkstyle.packaging")

Using the plugins DSL:

plugins {
  id "com.thomasjensen.checkstyle.packaging" version "0.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.thomasjensen.checkstyle.packaging:checkstyle-packaging:0.6.2"
  }
}

apply plugin: "com.thomasjensen.checkstyle.packaging"

Learn how to apply plugins to subprojects