Search Gradle plugins

Version 1.1.12-SNAPSHOT (latest)

Created 07 February 2017.

Just what it says on the tin.

Using the plugins DSL:

plugins {
  id("com.thejohnfreeman.pitest") version "1.1.12-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.1.12-SNAPSHOT")
  }
}

apply(plugin = "com.thejohnfreeman.pitest")

Using the plugins DSL:

plugins {
  id "com.thejohnfreeman.pitest" version "1.1.12-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.1.12-SNAPSHOT"
  }
}

apply plugin: "com.thejohnfreeman.pitest"

Learn how to apply plugins to subprojects