Skip to content

Commit

Permalink
update PIT to 1.9.5 and JUnit5 plugin to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mjedynak committed Sep 23, 2022
1 parent 99dc043 commit 8ed906d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 44 deletions.
12 changes: 9 additions & 3 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
<idea-plugin url="https://github.com/mjedynak/pit-idea-plugin">
<name>PIT Mutation Testing Idea</name>
<name>PIT Mutation Testing</name>
<description><![CDATA[
IntelliJ IDEA plugin for PIT Mutation Testing (pitest.org).
<br/>
Bundled with PIT 1.7.4 and JUnit5 plugin 0.15
Bundled with PIT 1.9.5 and JUnit5 plugin 1.0.0
<br/><br/>
Adds a 'Run configuration' that allows to execute PIT within IDE.
<br/><br/>
<b>Usage:</b> Run->Edit Configurations->Defaults->Pit Runner
<br/><br/>
]]></description>
<version>1.4.6</version>
<version>1.4.7</version>
<change-notes>
<![CDATA[
version 1.4.7
<br/>
<ul>
<li>Upgrade PIT version to 1.9.5 and JUnit5 plugin to 1.0.0</li>
<li>Visual additions and adjustments (contribution by <a href="https://github.com/JoaoCipriano">JoaoCipriano</a>)</li>
</ul>
version 1.4.6
<br/>
<ul>
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ intellij {
}

// --- properties ---
ext.pitVersion = '1.7.4'
ext.pitVersion = '1.9.5'
sourceCompatibility = 1.8
// --- properties ---

Expand All @@ -28,7 +28,7 @@ dependencies {
implementation("org.pitest:pitest-entry:$pitVersion") { transitive = false }
implementation("org.pitest:pitest:$pitVersion") { transitive = false }
implementation('com.thoughtworks.xstream:xstream:1.4.8')
implementation "org.pitest:pitest-junit5-plugin:0.15"
implementation 'org.pitest:pitest-junit5-plugin:1.0.0'
compileOnly 'org.codehaus.groovy:groovy-all:2.5.14'
testCompileOnly 'org.codehaus.groovy:groovy-all:2.5.14'
testImplementation('org.spockframework:spock-core:0.7-groovy-2.0') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.intellij.util.PathsList

class ClassPathPopulator {

static final String PITEST_VERSION = '1.7.4'
static final String PITEST_VERSION = '1.9.5'
static final String PITEST_JAR = 'pitest-' + PITEST_VERSION + JAR_EXTENSION
static final String PITEST_COMMAND_LINE_JAR = 'pitest-command-line-' + PITEST_VERSION + JAR_EXTENSION
static final String PITEST_ENTRY_JAR = 'pitest-entry-' + PITEST_VERSION + JAR_EXTENSION
Expand All @@ -24,7 +24,7 @@ class ClassPathPopulator {
addFirst(path + 'xstream-1.4.8.jar')
addFirst(path + 'xmlpull-1.1.3.1.jar')
addFirst(path + 'xpp3_min-1.1.4c.jar')
addFirst(path + 'pitest-junit5-plugin-0.15.jar')
addFirst(path + 'pitest-junit5-plugin-1.0.0.jar')
}
}
}
37 changes: 0 additions & 37 deletions src/test/resources/mutations.xml

This file was deleted.

0 comments on commit 8ed906d

Please sign in to comment.