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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ We use [semantic versioning](http://semver.org/):
- PATCH version when you make backwards compatible bug fixes.

# Next version
- _maven-plugin_: Added maven properties for `runImpacted` and `runAllTests` configuration parameters

# 36.2.0
- _agent_: improved logging when multiple agents are attached
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ public abstract class TiaMojoBase extends TeamscaleMojoBase {
/**
* Executes all tests, not only impacted ones if set. Defaults to false.
*/
@Parameter(defaultValue = "false")
@Parameter(defaultValue = "false", property = "runAllTests")
public boolean runAllTests;

/**
* Executes only impacted tests, not all ones if set. Defaults to true.
*/
@Parameter(defaultValue = "true")
@Parameter(defaultValue = "true", property = "runImpacted")
public boolean runImpacted;

/**
Expand Down
Loading