com.thejohnfreeman.pitest
Owner: John Freeman
Just what it says on the tin.
http://gradle-pitest-plugin.solidsoft.info/
Sources: https://github.com/szpak/gradle-pitest-plugin
Version 1.1.12-SNAPSHOT (latest)
1.1.12-SNAPSHOT
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"