File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
src/main/groovy/pl/mjedynak/idea/plugins/pit Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 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>
Original file line number Diff line number Diff line change 11plugins {
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
77intellij {
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
1616sourceCompatibility = 17
1717targetCompatibility = 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' ) {
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import groovy.transform.CompileStatic
77@CompileStatic
88class 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'
You can’t perform that action at this time.
0 commit comments