Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.3.1] - 2025-08-22

### Fixed

- Fixed tests not being able to run.

## [1.3.0] - 2025-08-20

### Changed
Expand Down Expand Up @@ -434,7 +440,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Gradle helpers for Fabric and Forge projects.
- CI workflows.

[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v1.3.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v1.3.1...HEAD

[1.3.1]: https://github.com/refinedmods/refinedarchitect/compare/v1.3.0...v1.3.1

[1.3.0]: https://github.com/refinedmods/refinedarchitect/compare/v1.2.0...v1.3.0

Expand Down
3 changes: 1 addition & 2 deletions refinedarchitect-plugin/src/main/kotlin/BaseExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,13 @@ open class BaseExtension(private val project: Project) {
mutationThreshold.set(90)
coverageThreshold.set(80)
}
project.dependencies.add("testRuntimeOnly", "org.junit.platform:junit-platform-launcher")
?.because("required for pitest")
}

fun testing() {
project.tasks.withType<Test>().forEach {
it.useJUnitPlatform()
}
project.dependencies.add("testRuntimeOnly", "org.junit.platform:junit-platform-launcher")
}

fun javadoc() {
Expand Down
Loading