Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

publish the plugin #3

Open
christophsturm opened this issue Aug 22, 2018 · 7 comments
Open

publish the plugin #3

christophsturm opened this issue Aug 22, 2018 · 7 comments

Comments

@christophsturm
Copy link

the readme makes it look like the plugin is available from maven central but i cannot find it there.

@andmontanezp
Copy link

I have the same issue, is there any solution ?

@andmontanezp
Copy link

the readme makes it look like the plugin is available from maven central but i cannot find it there.

I think I've got a solution for this issue, I don't know what are you looking for but in my case I needed to get the mutation coverage of a codebase written in both java and kotlin.
I just upgraded the pitest-plugin version to 1.2.4
classpath("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.2.4")
after that, just execute
gradle clean
and
gradle pitest -Doverride.pitest.mutationThreshold=
Let me know whether it was useful or not.

@zogar1993
Copy link

Same issue. I tried what you said @assembler07, but it did not work. The repo does not seem to exist https://search.maven.org/search?q=pitest-kotlin-plugin

@Vantuz
Copy link

Vantuz commented Oct 9, 2019

I published it to bintray

To use my repo add following to buildscript section of your Gradle file:

    repositories {
        maven { url "https://dl.bintray.com/vantuz/pitest-kotlin" }
        ...
    }

and

    dependencies {
        classpath "info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.5"
        pitest "org.pitest:pitest-kotlin-plugin:1.0"
        ...
    }

@Simulant87
Copy link

how to configure it in a build.gralde.kts file with the Kotlin DSL?

@dalewking
Copy link

dalewking commented Sep 22, 2020

Looks like you can get it through jitpack.io: https://jitpack.io/#pitest/pitest-kotlin

@JoaoGFarias
Copy link

JoaoGFarias commented Oct 6, 2020

For maven users, I've have deployed the code myself.
You can use this dependency:

<dependency>
    <groupId>com.github.joaogfarias</groupId>
    <artifactId>pitest-kotlin-plugin</artifactId>
    <version>0.1-SNAPSHOT</version>
</dependency>

https://oss.sonatype.org/#nexus-search;quick~pitest-kotlin-plugin

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants