Skip to content

Conversation

@robfrank
Copy link
Collaborator

@robfrank robfrank commented Oct 18, 2023

Related issues

#1279

When merged, the package project will produce three different zip/tar.gz and three different Docker images:

  • arcadedb-package-VERSIOM.zip: as before, the full fledge package with all the plugin inside
  • arcadedb-minimal-VERSION.zip
  • arcadedb-headless-VERSION.zip

What is removed in mininal and headless (as per related issue #1279) :

  • minimal:
            <excludes>
                <exclude>com.arcadedb:arcadedb-gremlin</exclude>
                <exclude>com.arcadedb:arcadedb-redisw</exclude>
                <exclude>com.arcadedb:arcadedb-mongodbw</exclude>
                <exclude>com.arcadedb:arcadedb-graphql</exclude>
            </excludes>
  • headless:
            <excludes>
                <exclude>com.arcadedb:arcadedb-gremlin</exclude>
                <exclude>com.arcadedb:arcadedb-redisw</exclude>
                <exclude>com.arcadedb:arcadedb-mongodbw</exclude>
                <exclude>com.arcadedb:arcadedb-graphql</exclude>
                <exclude>com.arcadedb:arcadedb-studio</exclude>
            </excludes>

Docker images will be:

  • arcadedata/arcadedb: as before, the full version (non rename)
  • arcadedata/arcadedb-minimal
  • arcadedata/arcadedb-headless

In this case, I kept the same name to don't force people that is using the Docker image in docker-compose, scripts, k8s to rename the reference to the image in a lot of files

Again, @lvca , WDYT?

Additionale notes

  • the "code" relative to Studio is in its own module
  • pre-commit is configure to format js and xml

@robfrank robfrank force-pushed the feature-1279/packaging branch 3 times, most recently from 3d9d2de to 9d1b1fb Compare November 1, 2023 15:33
@robfrank robfrank force-pushed the feature-1279/packaging branch from 9d1b1fb to 3b3282d Compare November 12, 2023 14:49
@robfrank robfrank force-pushed the feature-1279/packaging branch 2 times, most recently from b3584e3 to 35677d9 Compare November 26, 2023 08:46
@robfrank robfrank requested a review from lvca November 26, 2023 14:29
@robfrank robfrank marked this pull request as ready for review November 26, 2023 14:29
@lvca
Copy link
Contributor

lvca commented Nov 26, 2023

Thanks @robfrank , this is huge! What is in and out the 2 new distribution?

@robfrank
Copy link
Collaborator Author

@lvca note that I moved all the js/html files in a dedicated module, that's why we have so many files in the PR

Copy link
Contributor

@lvca lvca left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I love you separated studio!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was this intentional or some IDE auto formatting?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

autoformatter

package/pom.xml Outdated
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about using arcadedb-full as a name? So everybody understand it's the full version?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

was my first choice. But then I preferred to not create problems to people that is referring, maybe in their scripts, to arcadedb-package

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's the opposite: now arcadedb-package is just a sub-project to pack up the distribution and everybody is using just "arcadedb-".

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I never noticed we published the whole distribution on Maven, not only GitHub! But nobody is linking that package because it's a zip. not a jar. So we can even get rid of that and nobody would notice. The zip file is directly available on github.

The only doubt is about the name of the full distribution. In Docker we keep the current name (no suffix), that doesn't break compatibility 👍 But for the release we change it to "package" just to stick with the current zip deployed on maven, but nobody I think ever used it.

What if we remove the suffix from it? So we'd have (I usually upload the .tar.gz instead of .zip on github because it keeps the UNIX permissions on the .sh files):

  • arcadedb-VERSION.tar.gz: as before, the full-fledged package with all the plugins inside
  • arcadedb-minimal-VERSION.tar.gz
  • arcadedb-headless-VERSION.tar.gz

And same for docker:

  • arcadedata/arcadedb: as before, the full version (non rename)
  • arcadedata/arcadedb-minimal
  • arcadedata/arcadedb-headless

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, this commit 4421646

does that

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you exclude gremlin, does it automatically exclude al the linked jars?

Copy link
Collaborator Author

@robfrank robfrank Nov 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes because every pplugin (gremlin, redis, postgres) is packaged as a single fat jar (note the size):

22K Nov 26 21:17 arcadedb-console-23.11.1-SNAPSHOT.jar
2.0M Nov 26 21:17 arcadedb-engine-23.11.1-SNAPSHOT.jar
101K Nov 26 21:17 arcadedb-graphql-23.11.1-SNAPSHOT.jar
43M Nov 26 21:17 arcadedb-gremlin-23.11.1-SNAPSHOT.jar
166K Nov 26 21:17 arcadedb-integration-23.11.1-SNAPSHOT.jar
2.8M Nov 26 21:17 arcadedb-mongodbw-23.11.1-SNAPSHOT.jar
74K Nov 26 21:17 arcadedb-network-23.11.1-SNAPSHOT.jar
32K Nov 26 21:17 arcadedb-postgresw-23.11.1-SNAPSHOT.jar
16K Nov 26 21:17 arcadedb-redisw-23.11.1-SNAPSHOT.jar
267K Nov 26 21:17 arcadedb-server-23.11.1-SNAPSHOT.jar
.0M Nov 26 21:17 arcadedb-studio-23.11.1-SNAPSHOT.jar

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why studio is empty? console is only 22k? It seems like it's not including depending jars from the console. Or perhaps the fatjar is only with gremlin?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fatjar is oly for plugins: redis, gremlin, postgresql, mongodb.
errata corrige for tudio:

 7.0M Nov 26 21:17 arcadedb-studio-23.11.1-SNAPSHOT.jar

@robfrank robfrank requested a review from lvca November 28, 2023 08:21
@robfrank robfrank force-pushed the feature-1279/packaging branch from 10d37c8 to d7bf5d2 Compare November 28, 2023 21:02
@lvca
Copy link
Contributor

lvca commented Nov 28, 2023

Approved

@arcade-player arcade-player merged commit 0cee8ae into main Nov 29, 2023
@lvca lvca added this to the 23.11.1 milestone Nov 29, 2023
@lvca lvca added the enhancement New feature or request label Nov 29, 2023
mergify bot added a commit that referenced this pull request May 25, 2025
Bumps `jline.version` from 3.30.1 to 3.30.3.
Updates `org.jline:jline-terminal` from 3.30.1 to 3.30.3
Release notes

*Sourced from [org.jline:jline-terminal's releases](https://github.com/jline/jline3/releases).*

> JLine 3.30.3
> ------------
>
> 🚀 New features and improvements
> -------------------------------
>
> * Add support for separate encodings for stdin, stdout, and stderr ([#1284](https://github.com/jline/jline3/pull/1284)) [`@​gnodet`](https://github.com/gnodet)
> * [consoleui] Make prompts work in non-fullscreen mode ([#1283](https://github.com/jline/jline3/pull/1283)) [`@​gnodet`](https://github.com/gnodet)
>
> 🐛 Bug Fixes
> -----------
>
> * fix: Fix missing close in PosixSysTerminal. ([#1281](https://github.com/jline/jline3/pull/1281)) [`@​gnodet`](https://github.com/gnodet)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump com.palantir.javaformat:palantir-java-format from 2.38.0 to 2.67.0 ([#1288](https://github.com/jline/jline3/pull/1288)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * chore: Bump org.easymock:easymock from 5.5.0 to 5.6.0 ([#1279](https://github.com/jline/jline3/pull/1279)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * chore: Bump eu.maveniverse.maven.njord:extension from 0.5.2 to 0.5.4 ([#1280](https://github.com/jline/jline3/pull/1280)) @[dependabot[bot]](https://github.com/apps/dependabot)
>
> 👻 Maintenance
> -------------
>
> * chore: Fix build.bat syntax errors and preserve arguments in rebuild command ([#1286](https://github.com/jline/jline3/pull/1286)) [`@​gnodet`](https://github.com/gnodet)
> * chore: Fix flaky DumbTerminalPasswordTest ([#1287](https://github.com/jline/jline3/pull/1287)) [`@​gnodet`](https://github.com/gnodet)
> * chore: add Palantir Java Format version property for Dependabot updates ([#1285](https://github.com/jline/jline3/pull/1285)) [`@​gnodet`](https://github.com/gnodet)
>
> JLine 3.30.2
> ------------
>
> 🐛 Bug Fixes
> -----------
>
> * fix: enhance nanorc loading and introduce a ClasspathResourceUtil utility ([#1276](https://github.com/jline/jline3/pull/1276)) [`@​gnodet`](https://github.com/gnodet)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump eu.maveniverse.maven.njord:extension from 0.5.1 to 0.5.2 ([#1277](https://github.com/jline/jline3/pull/1277)) @[dependabot[bot]](https://github.com/apps/dependabot)


Commits

* [`6616485`](jline/jline3@6616485) [maven-release-plugin] prepare release jline-3.30.3
* [`da3c465`](jline/jline3@da3c465) Add support for separate encodings for stdin, stdout, and stderr ([#1284](https://github.com/jline/jline3/issues/1284))
* [`0076600`](jline/jline3@0076600) [consoleui] Make prompts work in non-fullscreen mode ([#1283](https://github.com/jline/jline3/issues/1283))
* [`3420773`](jline/jline3@3420773) chore: Fix build.bat syntax errors ([#1286](https://github.com/jline/jline3/issues/1286))
* [`8e91c99`](jline/jline3@8e91c99) chore: Bump com.palantir.javaformat:palantir-java-format from 2.38.0 to 2.67....
* [`80e05df`](jline/jline3@80e05df) chore: fix flaky DumbTerminalPasswordTest ([#1287](https://github.com/jline/jline3/issues/1287))
* [`d41dcb9`](jline/jline3@d41dcb9) Fix missing close in PosixSysTerminal. ([#1281](https://github.com/jline/jline3/issues/1281))
* [`a7cf4b3`](jline/jline3@a7cf4b3) chore: add Palantir Java Format version property for Dependabot updates ([#1285](https://github.com/jline/jline3/issues/1285))
* [`7c30a7e`](jline/jline3@7c30a7e) chore: Bump org.easymock:easymock from 5.5.0 to 5.6.0 ([#1279](https://github.com/jline/jline3/issues/1279))
* [`b84ab56`](jline/jline3@b84ab56) chore: Bump eu.maveniverse.maven.njord:extension from 0.5.2 to 0.5.4 ([#1280](https://github.com/jline/jline3/issues/1280))
* Additional commits viewable in [compare view](jline/jline3@jline-3.30.1...jline-3.30.3)
  
Updates `org.jline:jline-reader` from 3.30.1 to 3.30.3
Release notes

*Sourced from [org.jline:jline-reader's releases](https://github.com/jline/jline3/releases).*

> JLine 3.30.3
> ------------
>
> 🚀 New features and improvements
> -------------------------------
>
> * Add support for separate encodings for stdin, stdout, and stderr ([#1284](https://github.com/jline/jline3/pull/1284)) [`@​gnodet`](https://github.com/gnodet)
> * [consoleui] Make prompts work in non-fullscreen mode ([#1283](https://github.com/jline/jline3/pull/1283)) [`@​gnodet`](https://github.com/gnodet)
>
> 🐛 Bug Fixes
> -----------
>
> * fix: Fix missing close in PosixSysTerminal. ([#1281](https://github.com/jline/jline3/pull/1281)) [`@​gnodet`](https://github.com/gnodet)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump com.palantir.javaformat:palantir-java-format from 2.38.0 to 2.67.0 ([#1288](https://github.com/jline/jline3/pull/1288)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * chore: Bump org.easymock:easymock from 5.5.0 to 5.6.0 ([#1279](https://github.com/jline/jline3/pull/1279)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * chore: Bump eu.maveniverse.maven.njord:extension from 0.5.2 to 0.5.4 ([#1280](https://github.com/jline/jline3/pull/1280)) @[dependabot[bot]](https://github.com/apps/dependabot)
>
> 👻 Maintenance
> -------------
>
> * chore: Fix build.bat syntax errors and preserve arguments in rebuild command ([#1286](https://github.com/jline/jline3/pull/1286)) [`@​gnodet`](https://github.com/gnodet)
> * chore: Fix flaky DumbTerminalPasswordTest ([#1287](https://github.com/jline/jline3/pull/1287)) [`@​gnodet`](https://github.com/gnodet)
> * chore: add Palantir Java Format version property for Dependabot updates ([#1285](https://github.com/jline/jline3/pull/1285)) [`@​gnodet`](https://github.com/gnodet)
>
> JLine 3.30.2
> ------------
>
> 🐛 Bug Fixes
> -----------
>
> * fix: enhance nanorc loading and introduce a ClasspathResourceUtil utility ([#1276](https://github.com/jline/jline3/pull/1276)) [`@​gnodet`](https://github.com/gnodet)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump eu.maveniverse.maven.njord:extension from 0.5.1 to 0.5.2 ([#1277](https://github.com/jline/jline3/pull/1277)) @[dependabot[bot]](https://github.com/apps/dependabot)


Commits

* [`6616485`](jline/jline3@6616485) [maven-release-plugin] prepare release jline-3.30.3
* [`da3c465`](jline/jline3@da3c465) Add support for separate encodings for stdin, stdout, and stderr ([#1284](https://github.com/jline/jline3/issues/1284))
* [`0076600`](jline/jline3@0076600) [consoleui] Make prompts work in non-fullscreen mode ([#1283](https://github.com/jline/jline3/issues/1283))
* [`3420773`](jline/jline3@3420773) chore: Fix build.bat syntax errors ([#1286](https://github.com/jline/jline3/issues/1286))
* [`8e91c99`](jline/jline3@8e91c99) chore: Bump com.palantir.javaformat:palantir-java-format from 2.38.0 to 2.67....
* [`80e05df`](jline/jline3@80e05df) chore: fix flaky DumbTerminalPasswordTest ([#1287](https://github.com/jline/jline3/issues/1287))
* [`d41dcb9`](jline/jline3@d41dcb9) Fix missing close in PosixSysTerminal. ([#1281](https://github.com/jline/jline3/issues/1281))
* [`a7cf4b3`](jline/jline3@a7cf4b3) chore: add Palantir Java Format version property for Dependabot updates ([#1285](https://github.com/jline/jline3/issues/1285))
* [`7c30a7e`](jline/jline3@7c30a7e) chore: Bump org.easymock:easymock from 5.5.0 to 5.6.0 ([#1279](https://github.com/jline/jline3/issues/1279))
* [`b84ab56`](jline/jline3@b84ab56) chore: Bump eu.maveniverse.maven.njord:extension from 0.5.2 to 0.5.4 ([#1280](https://github.com/jline/jline3/issues/1280))
* Additional commits viewable in [compare view](jline/jline3@jline-3.30.1...jline-3.30.3)
  
Updates `org.jline:jline-terminal-jni` from 3.30.1 to 3.30.3
Release notes

*Sourced from [org.jline:jline-terminal-jni's releases](https://github.com/jline/jline3/releases).*

> JLine 3.30.3
> ------------
>
> 🚀 New features and improvements
> -------------------------------
>
> * Add support for separate encodings for stdin, stdout, and stderr ([#1284](https://github.com/jline/jline3/pull/1284)) [`@​gnodet`](https://github.com/gnodet)
> * [consoleui] Make prompts work in non-fullscreen mode ([#1283](https://github.com/jline/jline3/pull/1283)) [`@​gnodet`](https://github.com/gnodet)
>
> 🐛 Bug Fixes
> -----------
>
> * fix: Fix missing close in PosixSysTerminal. ([#1281](https://github.com/jline/jline3/pull/1281)) [`@​gnodet`](https://github.com/gnodet)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump com.palantir.javaformat:palantir-java-format from 2.38.0 to 2.67.0 ([#1288](https://github.com/jline/jline3/pull/1288)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * chore: Bump org.easymock:easymock from 5.5.0 to 5.6.0 ([#1279](https://github.com/jline/jline3/pull/1279)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * chore: Bump eu.maveniverse.maven.njord:extension from 0.5.2 to 0.5.4 ([#1280](https://github.com/jline/jline3/pull/1280)) @[dependabot[bot]](https://github.com/apps/dependabot)
>
> 👻 Maintenance
> -------------
>
> * chore: Fix build.bat syntax errors and preserve arguments in rebuild command ([#1286](https://github.com/jline/jline3/pull/1286)) [`@​gnodet`](https://github.com/gnodet)
> * chore: Fix flaky DumbTerminalPasswordTest ([#1287](https://github.com/jline/jline3/pull/1287)) [`@​gnodet`](https://github.com/gnodet)
> * chore: add Palantir Java Format version property for Dependabot updates ([#1285](https://github.com/jline/jline3/pull/1285)) [`@​gnodet`](https://github.com/gnodet)
>
> JLine 3.30.2
> ------------
>
> 🐛 Bug Fixes
> -----------
>
> * fix: enhance nanorc loading and introduce a ClasspathResourceUtil utility ([#1276](https://github.com/jline/jline3/pull/1276)) [`@​gnodet`](https://github.com/gnodet)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump eu.maveniverse.maven.njord:extension from 0.5.1 to 0.5.2 ([#1277](https://github.com/jline/jline3/pull/1277)) @[dependabot[bot]](https://github.com/apps/dependabot)


Commits

* [`6616485`](jline/jline3@6616485) [maven-release-plugin] prepare release jline-3.30.3
* [`da3c465`](jline/jline3@da3c465) Add support for separate encodings for stdin, stdout, and stderr ([#1284](https://github.com/jline/jline3/issues/1284))
* [`0076600`](jline/jline3@0076600) [consoleui] Make prompts work in non-fullscreen mode ([#1283](https://github.com/jline/jline3/issues/1283))
* [`3420773`](jline/jline3@3420773) chore: Fix build.bat syntax errors ([#1286](https://github.com/jline/jline3/issues/1286))
* [`8e91c99`](jline/jline3@8e91c99) chore: Bump com.palantir.javaformat:palantir-java-format from 2.38.0 to 2.67....
* [`80e05df`](jline/jline3@80e05df) chore: fix flaky DumbTerminalPasswordTest ([#1287](https://github.com/jline/jline3/issues/1287))
* [`d41dcb9`](jline/jline3@d41dcb9) Fix missing close in PosixSysTerminal. ([#1281](https://github.com/jline/jline3/issues/1281))
* [`a7cf4b3`](jline/jline3@a7cf4b3) chore: add Palantir Java Format version property for Dependabot updates ([#1285](https://github.com/jline/jline3/issues/1285))
* [`7c30a7e`](jline/jline3@7c30a7e) chore: Bump org.easymock:easymock from 5.5.0 to 5.6.0 ([#1279](https://github.com/jline/jline3/issues/1279))
* [`b84ab56`](jline/jline3@b84ab56) chore: Bump eu.maveniverse.maven.njord:extension from 0.5.2 to 0.5.4 ([#1280](https://github.com/jline/jline3/issues/1280))
* Additional commits viewable in [compare view](jline/jline3@jline-3.30.1...jline-3.30.3)
  
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
@robfrank robfrank deleted the feature-1279/packaging branch June 20, 2025 07:40
mergify bot added a commit that referenced this pull request Dec 1, 2025
… to 2.20.1 [skip ci]

Bumps [org.codehaus.mojo:versions-maven-plugin](https://github.com/mojohaus/versions) from 2.19.1 to 2.20.1.
Release notes

*Sourced from [org.codehaus.mojo:versions-maven-plugin's releases](https://github.com/mojohaus/versions/releases).*

> 2.20.1
> ------
>
> 🐛 Bug Fixes
> -----------
>
> * Fixed [#1313](https://github.com/mojohaus/versions/issues/1313): Do not show existing version as update ([#1315](https://github.com/mojohaus/versions/pull/1315)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 2.20.0
> ------
>
> 🚀 New features and improvements
> -------------------------------
>
> * Allow filtering out pre releases in use-latest-versions ([#1283](https://github.com/mojohaus/versions/pull/1283)) [`@​Artur`](https://github.com/Artur)-
> * [#979](https://github.com/mojohaus/versions/issues/979): Output file is not overwritten by default ([#1279](https://github.com/mojohaus/versions/pull/1279)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 🐛 Bug Fixes
> -----------
>
> * Fixed a problem with dependency management filtering in the logged results ([#1298](https://github.com/mojohaus/versions/pull/1298)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixes [#1295](https://github.com/mojohaus/versions/issues/1295): getAllUpdates(boolean) should respect currentVersionRange ([#1297](https://github.com/mojohaus/versions/pull/1297)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixed [#1287](https://github.com/mojohaus/versions/issues/1287) - Versionless dependencies in dependencyManagement accepted by maven, but not bij resolve-ranges ([#1288](https://github.com/mojohaus/versions/pull/1288)) [`@​maroschutte`](https://github.com/maroschutte)
> * Artifact comparison should use semantic version comparison. ([#1281](https://github.com/mojohaus/versions/pull/1281)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Resolves [#1150](https://github.com/mojohaus/versions/issues/1150): Resolve multiple level properties (properties resolving to properties) ([#1276](https://github.com/mojohaus/versions/pull/1276)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 📝 Documentation updates
> -----------------------
>
> * Add more examples of ignoredVersions config parameter ([#1296](https://github.com/mojohaus/versions/pull/1296)) [`@​mikkoi`](https://github.com/mikkoi)
> * Fix broken href link in site ([#1294](https://github.com/mojohaus/versions/pull/1294)) [`@​mikkoi`](https://github.com/mikkoi)
> * Added remaining javadoc comments. ([#1293](https://github.com/mojohaus/versions/pull/1293)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Getting rid of javadoc warnings ([#1292](https://github.com/mojohaus/versions/pull/1292)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 👻 Maintenance
> -------------
>
> * ResolverAdapter: a thin adapter over Resolver ([#1301](https://github.com/mojohaus/versions/pull/1301)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fixed a problem with dependency management filtering in the logged results ([#1298](https://github.com/mojohaus/versions/pull/1298)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Fix broken href link in site ([#1294](https://github.com/mojohaus/versions/pull/1294)) [`@​mikkoi`](https://github.com/mikkoi)
> * Added remaining javadoc comments. ([#1293](https://github.com/mojohaus/versions/pull/1293)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Getting rid of javadoc warnings ([#1292](https://github.com/mojohaus/versions/pull/1292)) [`@​andrzejj0`](https://github.com/andrzejj0)
> * Removed a redundant integration test ([#1280](https://github.com/mojohaus/versions/pull/1280)) [`@​andrzejj0`](https://github.com/andrzejj0)
>
> 📦 Dependency updates
> --------------------
>
> * Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0 ([#1312](https://github.com/mojohaus/versions/pull/1312)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump byteBuddyVersion from 1.18.0 to 1.18.1 ([#1311](https://github.com/mojohaus/versions/pull/1311)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-archiver from 4.10.3 to 4.10.4 ([#1307](https://github.com/mojohaus/versions/pull/1307)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump byteBuddyVersion from 1.17.7 to 1.18.0 ([#1309](https://github.com/mojohaus/versions/pull/1309)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump commons-codec:commons-codec from 1.19.0 to 1.20.0 ([#1303](https://github.com/mojohaus/versions/pull/1303)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump commons-io:commons-io from 2.20.0 to 2.21.0 ([#1305](https://github.com/mojohaus/versions/pull/1305)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-i18n from 1.0.0 to 1.1.0 ([#1306](https://github.com/mojohaus/versions/pull/1306)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-interactivity-api from 1.4 to 1.5.1 ([#1308](https://github.com/mojohaus/versions/pull/1308)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.3.0 to 3.4.0 ([#1302](https://github.com/mojohaus/versions/pull/1302)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.plexus:plexus-archiver from 4.10.2 to 4.10.3 ([#1290](https://github.com/mojohaus/versions/pull/1290)) @[dependabot[bot]](https://github.com/apps/dependabot)
> * Bump org.codehaus.mojo:mojo-parent from 93 to 94 ([#1285](https://github.com/mojohaus/versions/pull/1285)) @[dependabot[bot]](https://github.com/apps/dependabot)

... (truncated)


Commits

* [`b296a4f`](mojohaus/versions@b296a4f) [maven-release-plugin] prepare release 2.20.1
* [`b243939`](mojohaus/versions@b243939) Fixed [#1313](https://github.com/mojohaus/versions/issues/1313): Do not show existing version as update ([#1315](https://github.com/mojohaus/versions/issues/1315))
* [`773d0f3`](mojohaus/versions@773d0f3) [maven-release-plugin] prepare for next development iteration
* [`2467d99`](mojohaus/versions@2467d99) [maven-release-plugin] prepare release 2.20.0
* [`4c240e7`](mojohaus/versions@4c240e7) Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0
* [`6d64537`](mojohaus/versions@6d64537) Bump byteBuddyVersion from 1.18.0 to 1.18.1
* [`7736ca6`](mojohaus/versions@7736ca6) Bump org.codehaus.plexus:plexus-archiver from 4.10.3 to 4.10.4
* [`37a5330`](mojohaus/versions@37a5330) Bump byteBuddyVersion from 1.17.7 to 1.18.0
* [`edeb5e7`](mojohaus/versions@edeb5e7) Bump commons-codec:commons-codec from 1.19.0 to 1.20.0
* [`88874e0`](mojohaus/versions@88874e0) Bump commons-io:commons-io from 2.20.0 to 2.21.0
* Additional commits viewable in [compare view](mojohaus/versions@2.19.1...2.20.1)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.codehaus.mojo:versions-maven-plugin&package-manager=maven&previous-version=2.19.1&new-version=2.20.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants