Skip to content

Commit f1e421e

Browse files
committed
feat: update PIT to 1.20.0
1 parent 58354ae commit f1e421e

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

META-INF/plugin.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,21 @@
44
<description><![CDATA[
55
IntelliJ IDEA plugin for PIT Mutation Testing (pitest.org).
66
<br/>
7-
Bundled with PIT 1.15.8 and JUnit5 plugin 1.2.1
7+
Bundled with PIT 1.20.0 and JUnit5 plugin 1.2.3
88
<br/><br/>
99
Adds a 'Run configuration' that allows to execute PIT within IDE.
1010
<br/><br/>
1111
<b>Usage:</b> Run->Edit Configurations->Defaults->Pit Runner
1212
<br/><br/>
1313
]]></description>
14-
<version>1.4.10</version>
14+
<version>1.4.11</version>
1515
<change-notes>
1616
<![CDATA[
17+
version 1.4.11
18+
<br/>
19+
<ul>
20+
<li>Upgrade PIT version to 1.20.0 and JUnit5 plugin to 1.2.3</li>
21+
</ul>
1722
version 1.4.10
1823
<br/>
1924
<ul>

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
plugins {
22
id 'groovy'
3-
id 'org.jetbrains.intellij' version '1.17.1'
3+
id 'org.jetbrains.intellij' version '1.17.4'
44
id 'com.diffplug.spotless' version '6.25.0'
55
}
66

77
intellij {
8-
version = '2023.3'
8+
version = '2024.3'
99
plugins = ['java']
1010
}
1111

1212

13-
ext.pitVersion = '1.15.8'
14-
ext.pitJunit5PluginVersion = '1.2.1'
13+
ext.pitVersion = '1.20.0'
14+
ext.pitJunit5PluginVersion = '1.2.3'
1515

1616
sourceCompatibility = 17
1717
targetCompatibility = 17
@@ -33,6 +33,7 @@ dependencies {
3333
implementation("org.pitest:pitest:$pitVersion") { transitive = false }
3434
implementation "org.pitest:pitest-junit5-plugin:$pitJunit5PluginVersion"
3535
implementation 'org.apache.commons:commons-text:1.10.0'
36+
implementation('org.junit.platform:junit-platform-launcher:1.9.2') { transitive = false }
3637
compileOnly 'org.codehaus.groovy:groovy-all:3.0.19'
3738
testCompileOnly 'org.codehaus.groovy:groovy-all:3.0.19'
3839
testImplementation('org.spockframework:spock-core:2.3-groovy-3.0') {

src/main/groovy/pl/mjedynak/idea/plugins/pit/ClassPathPopulator.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import groovy.transform.CompileStatic
77
@CompileStatic
88
class ClassPathPopulator {
99

10-
static final String PITEST_VERSION = '1.15.8'
11-
static final String PITEST_JUNIT5_PLUGIN_VERSION = '1.2.1'
10+
static final String PITEST_VERSION = '1.20.0'
11+
static final String PITEST_JUNIT5_PLUGIN_VERSION = '1.2.3'
1212
static final String SEPARATOR = System.getProperty('file.separator')
1313
static final String PLUGIN_NAME = 'pit-idea-plugin'
1414
static final String LIB_DIR = 'lib'

0 commit comments

Comments
 (0)