Apache Maven
Apache Maven Surefire/Failsafe Plugin Version 3.0.0-M8 Released
The Apache Maven team is pleased to announce the release of the Apache Maven Surefire Plugin, version 3.0.0-M8.
The release contains 18 fixes and enhancements. Again we received contributions from the community in form of bug reports and bug fixes. Thank you and keep them coming!
You should specify the version in your project's plugin configuration:
1<plugin>
2 <groupId>org.apache.maven.plugins</groupId>
3 <artifactId>maven-surefire-plugin</artifactId>
4 <version>3.0.0-M8</version>
5</plugin>
or for failsafe:
1<plugin>
2 <groupId>org.apache.maven.plugins</groupId>
3 <artifactId>maven-failsafe-plugin</artifactId>
4 <version>3.0.0-M8</version>
5</plugin>
or for surefire-report:
1<plugin>
2 <groupId>org.apache.maven.plugins</groupId>
3 <artifactId>maven-surefire-report-plugin</artifactId>
4 <version>3.0.0-M8</version>
5</plugin>
You can download the appropriate sources etc. from the download page.
Release Notes - Maven Surefire - Version 3.0.0-M8
-
Bugs:
- SUREFIRE-2032 - When declare the @Disabled annotation at the class level, skip displayed in other test class
- SUREFIRE-2082 - Huge test sets may open too many files
- SUREFIRE-2090 - Xref link to source code with specified line number doesn't work. Missing "L" in anchor
- SUREFIRE-2101 - Phrased test names with missing @DisplayName result in a "null" test name
- SUREFIRE-2109 - User cannot write temporary file to surefire/ temp directory
- SUREFIRE-2117 - XML report omits package and outer class name for tests in @Nested inner class if testset reporter is configured to use phrased naming
- SUREFIRE-2135 - On Unix-like OS and JDK 18+ Surefire kills the forked JVM if PpidChecker is active and argLine is set to -Dfile.encoding=UTF-16
-
New Feature
- SUREFIRE-2139 - Fully support Java 19 byte code
-
Improvements:
- SUREFIRE-1654 - Remove deprecated parameter 'forkMode' and use only 'forkCount'
- SUREFIRE-1962 - Unit test for ProviderInfo#isApplicable
- SUREFIRE-2100 - Improve behaviour for surefire-report goal with aggregate parameter
- SUREFIRE-2133 - Make anchors start before the headings
- SUREFIRE-2136 - UmlautDirIT: Revert special paths with colon in it to regular ones after test
- SUREFIRE-2138 - Update JUnit versions used in docs/ITs
-
Tasks:
- SUREFIRE-2122 - Document how to develop on Surefire using IntelliJ
- SUREFIRE-2126 - Use the latest surefire version 3.0.0-M7 with self testing
- SUREFIRE-2137 - Run junit jupiter platform ITs with latest 5.8.x and 5.9.x as well
-
Dependency upgrade
- SUREFIRE-2129 - Upgrade Maven Reporting API to 3.1.1/Maven Reporting Impl to 3.2.0
Enjoy,
-The Apache Maven team
Posted at 09:59PM Jan 11, 2023
by khmarbaise in Plugin Release |
|
Apache Maven Dependency Plugin Version 3.5.0 Released
The Apache Maven team is pleased to announce the release of the Apache Maven Dependecy Plugin, version 3.5.0.
The dependency plugin provides the capability to manipulate artifacts. It can copy and/or unpack artifacts from local or remote repositories to a specified location.
https://maven.apache.org/plugins/maven-dependency-plugin/
You should specify the version in your project's plugin configuration:
1<plugin>
2 <groupId>org.apache.maven.plugins</groupId>
3 <artifactId>maven-dependency-plugin</artifactId>
4 <version>3.5.0</version>
5</plugin>
You can download the appropriate sources etc. from the download page:
https://maven.apache.org/plugins/maven-dependency-plugin/download.cgi
Release Notes - Maven Dependency Plugin - Version 3.5.0
-
Improvement
- MDEP-831 - Remove not used dependencies / Replace parts
-
Task
- MDEP-841 - Explicitly start and end tables with Doxia Sinks in report renderers
-
Dependency upgrade
- MDEP-837 - Upgrade Parent to 38
Enjoy,
-The Apache Maven team
Posted at 09:58PM Jan 11, 2023
by khmarbaise in Plugin Release |
|
Apache Maven PMD Plugin, version 3.20.0 Released
The Maven team is pleased to announce the release of the Apache Maven PMD Plugin, version 3.20.0
A Maven plugin for the PMD toolkit, that produces a report on both code rule violations and detected copy and paste fragments, as well as being able to fail the build based on these metrics.
You can download the appropriate sources etc. from the download page.
You should specify the version in your project's plugin configuration:
1<plugin>
2 <groupId>org.apache.maven.plugins</groupId>
3 <artifactId>maven-pmd-plugin</artifactId>
4 <version>3.20.0</version>
5</plugin>
Release Notes - Apache Maven PMD Plugin - Version 3.20.0
-
Bug
- MPMD-335 - Aggregate mode doesn't use additional repositories
-
Task
- MPMD-361 - Explicitly start and end tables with Doxia Sinks in report renderers
-
Dependency upgrades
Enjoy,
- The Maven team
Posted at 08:35PM Jan 11, 2023
by khmarbaise in Plugin Release |
|
Maven Project Info Reports Plugin version 3.4.2 - released
The Apache Maven team is pleased to announce the release of the Maven Project Info Reports Plugin version 3.4.2
You should specify the version in your project's plugin configuration:
1<plugin>
2 <groupId>org.apache.maven.plugins</groupId>
3 <artifactId>maven-project-info-reports-plugin</artifactId>
4 <version>3.4.2</version>
5</plugin>
You can download the appropriate sources etc. from the download page.
Release Notes - Maven Project Info Reports Plugin - Version 3.4.2
-
Bug
- MPIR-425 - Verbatim content should be rendered as plain text
-
Tasks
Enjoy,
-The Apache Maven team
Posted at 08:34PM Jan 11, 2023
by khmarbaise in Plugin Release |
|