Docker container to run the Maven Versions plugin.
This containers is meant to be used in CI/CD pipeline to detect when newer versions of Maven dependencies or plugins are avaible.
The image comes with Maven installed so it only needs a pom.xml to analyze. However if you want to control the version of Maven to be used instead, just make sure that there is a Maven wrapper script (mvnw) pointing to that version next to the pom.xml. For more information on how to install the maven wrapper in your project, see the documentation.
The script uses the Versions plugin (more details here). By default Maven will use the latest version of the plugin that it supports but you can set the desired version inside your pom.xml:
<properties>
...
<maven.versions.plugin>2.14.0</maven.versions.plugin>
...
</properties>
...
<build>
<pluginManagement>
<plugins>
...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${maven.versions.plugin}</version>
</plugin>
...
</plugins>
</pluginManagement>
</build>
To use this container in a GitHub worklow, add the following action file .github/workflows/maven-check-versions.yml
to your project:
---
name: Maven Check Versions
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
permissions: {}
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Check the versions
uses: docker://leplusorg/maven-check-versions:3.9.8@sha256:83d9758a4a0626f58376924c602919f14a782aa49e5e2bfb86de1f797de16cdd
This way the action can be triggered manually and otherwise it runs automatically once per week.
To use this container in a GitLab step, add the following step to the stage of your choice:
maven check versions:
image:
name: leplusorg/maven-check-versions:3.9.8@sha256:83d9758a4a0626f58376924c602919f14a782aa49e5e2bfb86de1f797de16cdd
script:
- "/opt/maven-check-versions.sh"
You can define which versions should be ignored using the
IGNORED_VERSIONS
OS environment variable which will be passed to the
maven versions plugin as maven.version.ignore
(see
https://www.mojohaus.org/versions/versions-maven-plugin/version-rules.html#Using_the_maven.version.ignore_property
for details). For example, you can set IGNORED_VERSIONS
to
(?i).+-(alpha|beta).+,(?i).+-m\\d+,(?i).+-rc\\d+
to ignore alpha,
beta, mark or release candidate versions.
Mac/Linux
docker run --rm -t --user="$(id -u):$(id -g)" -v "$(pwd):/opt/project" leplusorg/maven-check-versions
Windows
In cmd
:
docker run --rm -t -v "%cd%:/opt/project" leplusorg/maven-check-versions
In PowerShell:
docker run --rm -t -v "${PWD}:/opt/project" leplusorg/maven-check-versions
To get the SBOM for the latest image (in SPDX JSON format), use the following command:
docker buildx imagetools inspect leplusorg/maven-check-versions --format '{{ json (index .SBOM "linux/amd64").SPDX }}'
Replace linux/amd64
by the desired platform (linux/amd64
, linux/arm64
etc.).
Sigstore is trying to improve supply chain security by allowing you to verify the origin of an artifcat. You can verify that the jar that you use was actually produced by this repository. This means that if you verify the signature of the ristretto jar, you can trust the integrity of the whole supply chain from code source, to CI/CD build, to distribution on Maven Central or whever you got the jar from.
You can use the following command to verify the latest image using its sigstore signature attestation:
cosign verify leplusorg/maven-check-versions --certificate-identity-regexp 'https://github\.com/leplusorg/docker-maven-check-versions/\.github/workflows/.+' --certificate-oidc-issuer 'https://token.actions.githubusercontent.com'
The output should look something like this:
Verification for index.docker.io/leplusorg/xml:main --
The following checks were performed on each of these signatures:
- The cosign claims were validated
- Existence of the claims in the transparency log was verified offline
- The code-signing certificate was verified using trusted certificate authority certificates
[{"critical":...
For instructions on how to install cosign
, please read this documentation.