io.github.amos-pitmutationmate.pitmutationmate.override
Owner: pitmutationmate
A plugin that lets you override the PITest settings of the gradle-pitest-plugin to use with the PITMutationMate Intellij plugin.
https://github.com/amosproj/amos2023ws02-pitest-ide-plugin
Sources: https://github.com/amosproj/amos2023ws02-pitest-ide-plugin.git
Version 1.3 (latest)
1.3
Created 05 February 2024.
A plugin that lets you override the PITest settings of the gradle-pitest-plugin to use with the PITMutationMate Intellij plugin.
Using the plugins DSL:
plugins {
id("io.github.amos-pitmutationmate.pitmutationmate.override") version "1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.amos-pitmutationmate.pitmutationmate.override:plugin:1.3")
}
}
apply(plugin = "io.github.amos-pitmutationmate.pitmutationmate.override")
Using the plugins DSL:
plugins {
id "io.github.amos-pitmutationmate.pitmutationmate.override" version "1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.amos-pitmutationmate.pitmutationmate.override:plugin:1.3"
}
}
apply plugin: "io.github.amos-pitmutationmate.pitmutationmate.override"