Skip to content

Commit

Permalink
update PIT to 1.15.2 and JUnit5 plugin to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mjedynak committed Dec 28, 2023
1 parent c50e659 commit 27289c3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@
<description><![CDATA[
IntelliJ IDEA plugin for PIT Mutation Testing (pitest.org).
<br/>
Bundled with PIT 1.11.6 and JUnit5 plugin 1.1.2
Bundled with PIT 1.15.2 and JUnit5 plugin 1.2.1
<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.8</version>
<version>1.4.9</version>
<change-notes>
<![CDATA[
version 1.4.9
<br/>
<ul>
<li>Upgrade PIT version to 1.15.2 and JUnit5 plugin to 1.2.1</li>
version 1.4.8
<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.11.6'
ext.pitVersion = '1.15.2'
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 'org.apache.commons:commons-text:1.10.0'
implementation 'org.pitest:pitest-junit5-plugin:1.1.2'
implementation 'org.pitest:pitest-junit5-plugin:1.2.1'
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.11.6'
static final String PITEST_VERSION = '1.15.2'
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 @@ -23,7 +23,7 @@ class ClassPathPopulator {
addFirst(path + PITEST_ENTRY_JAR)
addFirst(path + 'commons-lang3-3.12.0.jar')
addFirst(path + 'commons-text-1.10.0.jar')
addFirst(path + 'pitest-junit5-plugin-1.1.2.jar')
addFirst(path + 'pitest-junit5-plugin-1.2.0.jar')
}
}
}

0 comments on commit 27289c3

Please sign in to comment.