File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
refinedarchitect-plugin/src/main/kotlin Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77
88## [ Unreleased]
99
10+ ## [ 1.3.1] - 2025-08-22
11+
12+ ### Fixed
13+
14+ - Fixed tests not being able to run.
15+
1016## [ 1.3.0] - 2025-08-20
1117
1218### Changed
@@ -434,7 +440,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
434440- Gradle helpers for Fabric and Forge projects.
435441- CI workflows.
436442
437- [ Unreleased ] : https://github.com/refinedmods/refinedarchitect/compare/v1.3.0...HEAD
443+ [ Unreleased ] : https://github.com/refinedmods/refinedarchitect/compare/v1.3.1...HEAD
444+
445+ [ 1.3.1 ] : https://github.com/refinedmods/refinedarchitect/compare/v1.3.0...v1.3.1
438446
439447[ 1.3.0 ] : https://github.com/refinedmods/refinedarchitect/compare/v1.2.0...v1.3.0
440448
Original file line number Diff line number Diff line change @@ -82,14 +82,13 @@ open class BaseExtension(private val project: Project) {
8282 mutationThreshold.set(90 )
8383 coverageThreshold.set(80 )
8484 }
85- project.dependencies.add(" testRuntimeOnly" , " org.junit.platform:junit-platform-launcher" )
86- ?.because(" required for pitest" )
8785 }
8886
8987 fun testing () {
9088 project.tasks.withType<Test >().forEach {
9189 it.useJUnitPlatform()
9290 }
91+ project.dependencies.add(" testRuntimeOnly" , " org.junit.platform:junit-platform-launcher" )
9392 }
9493
9594 fun javadoc () {
You can’t perform that action at this time.
0 commit comments