Upgrade qulice-maven-plugin to 0.27.2#61
Merged
yegor256 merged 2 commits intojcabi:masterfrom Apr 25, 2026
Merged
Conversation
Bumps the qulice-maven-plugin used in the qulice profile from 0.26.0 to 0.27.2 (latest stable). The new version's checkstyle adds JavadocEmptyLineBeforeTagCheck, which flagged 4 violations in test and mock sources where a blank Javadoc line preceded the @SInCE at-clause; those blank lines have been removed.
The qulice-maven-plugin 0.27.x line declares <requiredJavaVersion>21</requiredJavaVersion> in its plugin descriptor, so the qulice profile cannot run on Java 17 any more. This drops Java 17 from the test matrix and keeps Java 21 only, matching the plugin's prerequisites.
a36175a to
1ea4940
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@yegor256 — this PR upgrades the only outdated build component in this repository, the
qulice-maven-plugin, from0.26.0to0.27.2(current latest stable on Maven Central).Changes
pom.xml— bumpedqulice-maven-pluginfrom0.26.0to0.27.2.JavadocEmptyLineBeforeTagCheck, which forbids a blank Javadoc line right before an at-clause (e.g. before@since). The new rule reported four violations in test/mock sources; the offending blank lines have been removed:src/mainwas already clean.src/test/java/com/jcabi/urn/package-info.javasrc/test/java/com/jcabi/urn/URNTest.javasrc/mock/java/com/jcabi/urn/package-info.javasrc/mock/java/com/jcabi/urn/URNMocker.java.github/workflows/mvn.yml— dropped Java 17 from the matrix. The qulice 0.27.x plugin descriptor declares<requiredJavaVersion>21</requiredJavaVersion>, somvn ... -Pqulicecannot run on Java 17 any more. The matrix now runs on Java 21 acrossubuntu-24.04,windows-2022, andmacos-15. (qulice0.26.0still required Java 17, which was why the previous matrix was[17, 21].)Why no other dependency was bumped
All other direct dependencies and the parent POM are already on the latest published stable versions:
com.jcabi:jcabi-aspects 0.26.0org.projectlombok:lombok 1.18.46org.apache.commons:commons-lang3 3.20.0com.jcabi:jcabi 1.44.0Versions like
org.junit.jupiter 6.1.0-RC1,commons-codec 1.22.0,commons-io 2.22.0,jakarta.servlet 6.2.0-M1, etc. are reported as updates only because they are transitive entries in thejcabiparent and only newer pre-release versions exist; per the task constraints these are skipped (stable only).Verification
mvn clean install -Pqulicepasses locally.mvn clean install -Pjacocopasses locally.mvnmatrix (3 OSes × Java 21),actionlint,copyrights,markdown-lint,pdd,reuse,typos,xcop,yamllint.Ready for review and merge.