Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Define default argLine property #300

Merged
merged 1 commit into from
Feb 25, 2022
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
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Airbase 121

* Fix Surefire setup when JaCoCo is disabled

Airbase 120

* Add dependencies:
Expand All @@ -9,7 +13,7 @@ Airbase 120
- Joda-Time 2.10.13 (from 2.10.10)
* Plugin updates:
- update maven-compiler-plugin 3.9.0 (from 3.8.1)

Airbase 119

* Remove `air.test.skip` property. Use `skipTests` instead.
Expand Down
13 changes: 13 additions & 0 deletions airbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1383,6 +1383,19 @@
</plugins>
</build>
</profile>
<profile>
<id>jacoco-defaults</id>
<activation>
<property>
<name>air.check.skip-jacoco</name>
<value>!false</value>
</property>
</activation>
<properties>
<!-- ${argLine} is defined by Jacoco, but required by Surefire, so define an empty default when Jacoco is disabled -->
<argLine />
</properties>
</profile>
<profile>
<id>modernizer-check</id>
<activation>
Expand Down