)]}'
{
  "log": [
    {
      "commit": "9db0ee19a0e03512ecf01a51fc0b130b3877f7c4",
      "tree": "8f0c2555fef83e0ec22a2350aad8dba62021fcc6",
      "parents": [
        "839d18062b0f44c3e194137d20e51898eb269bac"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:36:17 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:57:21 2026 +0200"
      },
      "message": "Move writeReleases/resolveVersioningMetadata/isArtifactInRepository to aether-native repos\n\nremoteRepositories now injects ${project.remoteProjectRepositories}\n(List\u003cRemoteRepository\u003e, aether-native, mirror/proxy/auth already\napplied by Maven at project-build time) instead of the deprecated\n${project.remoteArtifactRepositories}. The one remaining consumer of\nthe legacy list -- ProjectBuildingRequest.setRemoteRepositories() in\ngetMavenProject(), which has no aether-native overload in maven-core\n3.9.16 (confirmed by reading DefaultProjectBuilder.InternalConfig,\nwhich builds its resolution session and repository list directly from\nrequest.getLocalRepository()/getRemoteRepositories()) -- gets its own\nnarrowly-scoped projectBuildingRepositories field instead.\n\nwriteReleases()\u0027s file-release loop still builds a legacy DefaultArtifact\n(needed for ArtifactHandlerManager\u0027s type-to-extension mapping), then\nconverts it once via RepositoryUtils.toArtifact() for both the path\ncomputation (RepositoryLayoutProvider, replacing\nArtifactRepository.pathOf()) and the existence check.\nisArtifactInRepository() drops its hand-rolled\n\"groupId:artifactId:type:version\" coordinate string and manual\nRemoteRepository reconstruction now that both artifact and repository\nalready arrive in their proper aether form.\n\nThat hand-rolled coordinate string was carrying a real bug: aether\u0027s\ncolon-coordinate parser treats the third segment as the file\nextension, not the Maven packaging, so for any packaging where the two\ndiffer (e.g. this plugin\u0027s own \"maven-plugin\", whose real extension is\n.jar) the existence check silently failed and \u003cfile-release\u003e was\ndropped for every release, on master, unconditionally. Verified by\ninstalling master\u0027s and this branch\u0027s plugin jar under the same GAV in\nturn and running doap:generate against this project\u0027s own pom (5 real\nreleases in central): master emits zero \u003cfile-release\u003e elements for\nany of them; this branch emits all five, and all five URLs return HTTP\n200 from repo.maven.apache.org. Not a claimed no-op change: it changes\noutput, for the better, and that\u0027s the point of using the real\nextension instead of the raw packaging string.\n\nEliminates 4 of the remaining 7 ArtifactRepository warnings; the last\n3 (import, localRepository, projectBuildingRepositories) are pinned by\nProjectBuildingRequest as above. Also verified with mvn compile/test\n(13/13) and mvn spotless:check.\n"
    },
    {
      "commit": "839d18062b0f44c3e194137d20e51898eb269bac",
      "tree": "966b5b133a754bf05947b21d6e8a62986888dce6",
      "parents": [
        "c9d8dd1f76ff42acc537937214779cd9688c4746"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:16:42 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:44:28 2026 +0200"
      },
      "message": "Replace the deprecated ArtifactFactory component with DefaultArtifact\n\nArtifactFactory.createArtifact()/createArtifactWithClassifier()/\ncreateProjectArtifact() are thin wrappers that resolve an\nArtifactHandler and call the (non-deprecated) DefaultArtifact\nconstructor; none of the three call sites in this mojo ever read the\nresulting artifact\u0027s scope, so the wrapper\u0027s scope-inference quirks\ndon\u0027t apply here. Both @Inject ArtifactFactory fields are replaced\nwith one ArtifactHandlerManager field and direct `new DefaultArtifact`\ncalls.\n\nThe Artifact built in writeReleases() only to read its groupId/\nartifactId for a warning message is dropped in favor of reading those\nstraight off the MavenProject. The fileReleaseClassifier/Type\nhandling also switches from !\u003d null to StringUtils.isNotEmpty, so an\nempty string from the command line doesn\u0027t slip through as a\nclassifier.\n\nArtifactRepository stays: ProjectBuildingRequest.setLocalRepository/\nsetRemoteRepositories (maven-core 3.9.16) have no aether-native\noverload, so the localRepository/remoteRepositories parameters and\neverything that iterates them are pinned to the deprecated type by\nmaven-core\u0027s own API surface, not by anything in this plugin.\n\nNot run against -Prun-its: this plugin doesn\u0027t have that profile.\nDefaultArtifact/ArtifactHandlerManager are recursively exported to\nplugin realms same as the rest of org.apache.maven.artifact.**, unlike\norg.apache.maven.bridge, so the usual class-realm risk for this kind\nof swap doesn\u0027t apply, but I want to say plainly what wasn\u0027t run.\n"
    },
    {
      "commit": "c9d8dd1f76ff42acc537937214779cd9688c4746",
      "tree": "f8981974a31d698450e7762f6db6a8f992e31e78",
      "parents": [
        "2b591fa8d71233bc49ebfe17d82846c5f628210c"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:11:08 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:44:28 2026 +0200"
      },
      "message": "Drop plexus ReaderFactory/WriterFactory and the dead blacklist check\n\nReaderFactory.newXmlReader(File)/WriterFactory.newXmlWriter(File) are\ndeprecated thin wrappers around XmlStreamReader/XmlStreamWriter (both\nalready on the classpath via plexus-xml); calling the constructors\ndirectly is a drop-in replacement.\n\nArtifactRepository.isBlacklisted() is deprecated and, per javap on\nmaven-core 3.9.16\u0027s two runtime implementations\n(MavenArtifactRepository and LegacyLocalRepositoryManager\u0027s adapter),\nhardcoded to return false, so the check in writeReleases() never\nskips a repository. Removed rather than replaced.\n"
    },
    {
      "commit": "2b591fa8d71233bc49ebfe17d82846c5f628210c",
      "tree": "f7b769f4d3f1f7b5750d7fd650c602bc7db656ec",
      "parents": [
        "b2340f05e7bd5369ccc2622255b2914218cc216a"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:05:28 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:07:18 2026 +0200"
      },
      "message": "Drop the dead IBM developerWorks link from the FAQ\n\ndeveloperworks/xml/library/x-osproj3 now redirects to a generic IBM\nlanding page; the original article is gone. No live replacement is\nworth a permanent doc reference, so the clause is dropped rather than\nrepointed.\n"
    },
    {
      "commit": "b2340f05e7bd5369ccc2622255b2914218cc216a",
      "tree": "5b4a822b1915cfab34870e1c3a6558fcd6c17d4d",
      "parents": [
        "9f06caa681c0076a393ff8cb9845bebf15cf8c31"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 20:49:07 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 21:07:18 2026 +0200"
      },
      "message": "Repoint dead usefulinc.com homepage links to the DOAP spec repo\n\nusefulinc.com has lapsed and now resolves to an unclaimed Netlify\nslot; homepage links in the FAQ, index page and mojo javadoc pointed\nthere. The http://usefulinc.com/ns/doap# namespace itself, used as\nthe DOAP RDF namespace and as @see references to individual DOAP\nvocabulary terms throughout the codebase, is left unchanged since\nit\u0027s a vocabulary identifier, not a page to browse.\n\nFixes #125\n"
    },
    {
      "commit": "9f06caa681c0076a393ff8cb9845bebf15cf8c31",
      "tree": "0f4759804ed2c31885013c421689bbb840cc0d5f",
      "parents": [
        "89648e1af653fc0081aeca7fd381c9db43cd2442"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "slawomir.jaranowski@payu.com",
        "time": "Fri Sep 11 15:13:38 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 20:38:18 2026 +0200"
      },
      "message": "Add tag-template to release-drafter.yml\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\n"
    },
    {
      "commit": "89648e1af653fc0081aeca7fd381c9db43cd2442",
      "tree": "e920ed2009f277ce3ea5b69874cd7dc012dc5086",
      "parents": [
        "9dff2e2f06fdf8b529956c3a52db68767b5134a5"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 20:33:17 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Sep 11 20:37:38 2026 +0200"
      },
      "message": "Exclude org.slf4j 2.x from Dependabot updates\n\nThis project targets Maven 3, which pins SLF4J to the 1.7.x line;\nDependabot was proposing a 2.0.19 bump in PR #176. Mirrors the ignore\nrule already used in apache/maven-dependency-plugin and\napache/maven-surefire.\n"
    },
    {
      "commit": "9dff2e2f06fdf8b529956c3a52db68767b5134a5",
      "tree": "9c8344be27f5ce172e5e56a195a36bc76249f9fa",
      "parents": [
        "efbbe0a428ad83bcdb1e7370ed436b86b860b89e"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Sep 10 12:58:07 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Sep 10 18:52:08 2026 +0200"
      },
      "message": "Migrate the site descriptor to the v2 model\n\nDoxia Sitetools warns that the pre-2.0.0 site model will break in a future version.\n"
    },
    {
      "commit": "efbbe0a428ad83bcdb1e7370ed436b86b860b89e",
      "tree": "c77e6b5b88c5f934613e89cd8536dd0294974123",
      "parents": [
        "ffcefe31870d303206c241f5db061fbc6c3b0f85"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Aug 24 13:56:06 2026 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 24 17:02:54 2026 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-interpolation from 1.29 to 1.30.0\n\nBumps [org.codehaus.plexus:plexus-interpolation](https://github.com/codehaus-plexus/plexus-interpolation) from 1.29 to 1.30.0.\n- [Release notes](https://github.com/codehaus-plexus/plexus-interpolation/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-interpolation/compare/plexus-interpolation-1.29...plexus-interpolation-1.30.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-interpolation\n  dependency-version: 1.30.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "ffcefe31870d303206c241f5db061fbc6c3b0f85",
      "tree": "245952ecd51b16c65e184d0a1dd2600004c2ca13",
      "parents": [
        "1597bc7f657144ee73fb9703c28d242d9b7b76fd"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Aug 24 13:56:10 2026 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 24 17:01:52 2026 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-i18n from 1.1.0 to 1.2.0\n\nBumps [org.codehaus.plexus:plexus-i18n](https://github.com/codehaus-plexus/plexus-i18n) from 1.1.0 to 1.2.0.\n- [Release notes](https://github.com/codehaus-plexus/plexus-i18n/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-i18n/compare/plexus-i18n-1.1.0...plexus-i18n-1.2.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-i18n\n  dependency-version: 1.2.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "1597bc7f657144ee73fb9703c28d242d9b7b76fd",
      "tree": "7b321be53b2ef87b0c7b7420c74c119e868f91d1",
      "parents": [
        "81d1d443a351595fb6fc442a625b210b46d86321"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Aug 24 13:56:23 2026 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 24 17:01:41 2026 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-testing from 2.1.0 to 2.2.0\n\nBumps [org.codehaus.plexus:plexus-testing](https://github.com/codehaus-plexus/plexus-testing) from 2.1.0 to 2.2.0.\n- [Release notes](https://github.com/codehaus-plexus/plexus-testing/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-testing/compare/plexus-testing-2.1.0...plexus-testing-2.2.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-testing\n  dependency-version: 2.2.0\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "81d1d443a351595fb6fc442a625b210b46d86321",
      "tree": "fdc7c36a5ff41664e32022025b4eb28ce6dff664",
      "parents": [
        "5cae80c9c87445b07533f28390f93f5d3dc20e6e"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Tue Aug 18 13:50:57 2026 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Aug 18 13:50:57 2026 -0400"
      },
      "message": "declare maven-model-builder as provided (#172)"
    },
    {
      "commit": "5cae80c9c87445b07533f28390f93f5d3dc20e6e",
      "tree": "8fa264adbe81ff68a563844af7f37fa85d733e9a",
      "parents": [
        "54c73d1dfddcbd423d2db56cac44c5b4baa03de2"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 17 15:51:34 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 17 16:42:12 2026 +0200"
      },
      "message": "Use Resolver\u0027s own HTTP transport in tests\n\nThe test repository session went through maven-resolver-transport-wagon and\nwagon-http-lightweight. That transport exists so build extensions can contribute\na Wagon provider; the tests resolve over plain HTTPS, which\nmaven-resolver-transport-http does directly.\n"
    },
    {
      "commit": "54c73d1dfddcbd423d2db56cac44c5b4baa03de2",
      "tree": "18b534c4aaf34d07d6e10b7df9b93799a5b206f6",
      "parents": [
        "184061e3eace442fad84bfe07f88404c46fafb91"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Aug 16 12:59:05 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Aug 16 13:20:33 2026 +0200"
      },
      "message": "Drop the maven-compat dependency\n\nTwo types came from maven-compat: MavenProjectBuilder and ArtifactResolver in\ngetMavenProject, and - less visibly - DefaultRepositoryMetadataManager, the\nonly implementation of the maven-core RepositoryMetadataManager interface\nwriteReleases injected. Injecting the interface alone leaves the mojo\nunprovisionable without compat on the classpath.\n\ngetMavenProject now uses maven-core\u0027s ProjectBuilder with the request compat\u0027s\nbuildFromRepository built for it (processPlugins false, minimal validation,\nstub models allowed) and resolves through Resolver. writeReleases reads\nmaven-metadata.xml through Resolver with an always-update policy, which is\nwhat resolveAlways gave it; a repository that carries no metadata for the\nproject stays a warning rather than becoming a failure, as before.\n\nArtifactFactory, ArtifactRepository and the legacy exception types stay - they\nare maven-core and maven-artifact, not compat.\n\nVerified: the five DOAP files the tests generate are byte-identical to the\nones master produces, apart from the generation timestamp comment.\n"
    },
    {
      "commit": "184061e3eace442fad84bfe07f88404c46fafb91",
      "tree": "9f8a5e73127877c86a29a8a0de220b31364ccb4a",
      "parents": [
        "aca008f613d3dc1561fd85572975b6682f339f19"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Aug 16 12:31:40 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Aug 16 13:15:13 2026 +0200"
      },
      "message": "Drop the unused wagon-provider-api dependency\n\nNothing under src/ references org.apache.maven.wagon. The API still reaches\nthe classpath transitively through the provided maven-compat dependency, at\nthe same 3.5.3, so what changes is the edge that supplies it, not the\nresolved tree.\n\nVerified: mvn dependency:tree -\u003e 70 nodes before and after, same artifacts.\n"
    },
    {
      "commit": "aca008f613d3dc1561fd85572975b6682f339f19",
      "tree": "9ab3928f432cfed5f05526442586b78873ed5baf",
      "parents": [
        "37b5377dca052a80e92f6e0d5c9bd74df72385b0"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 01:39:36 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 22:58:34 2026 +0200"
      },
      "message": "Modernise the download page\n\nThis page was last touched in 2018 and still carried the ASF mirror-selection\nform. The mirror network was retired in favour of a single CDN, so that form\nnow renders a \"choose a mirror\" dropdown offering exactly one entry,\ndlcdn.apache.org. The checksum, signature and KEYS links still pointed at\nwww.apache.org/dist, which has been a 301 to downloads.apache.org for years.\n\nThe page now matches the form the rest of the Maven estate already uses,\nfinishing for this repository the sweep started in 2023:\n\n  - the artifact from dlcdn.apache.org\n  - the .sha512, .asc and KEYS from downloads.apache.org\n  - older releases from archive.apache.org\n\nTwo things go with the mirror section, both worth a reviewer\u0027s attention:\n\n  - its in-page anchors, #mirror and the version-numbered subsection anchor,\n    which becomes the stable #Files. In-page only; no URL changes.\n  - the paragraph linking to /guides/mini/guide-mirror-settings.html. That\n    page is still live, but it is advice about configuring a repository\n    mirror in settings.xml rather than about downloading a source release,\n    and none of the ~43 repositories already on the current form carry it.\n    Dropping it is what converges this page with the rest of the estate; say\n    so on the PR if you would rather keep it here.\n\ndownload.cgi is left in place. The ASF licence header is left exactly as it\nwas.\n\nGenerated-by: Claude Opus 5 (1M context)\n"
    },
    {
      "commit": "37b5377dca052a80e92f6e0d5c9bd74df72385b0",
      "tree": "1c2faea3e88db1b4c8166b7917432713059cb6ec",
      "parents": [
        "5ae8605dd53142dec45211a65442a560d1123039"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 02:05:21 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 02:26:58 2026 +0200"
      },
      "message": "Convert the FAQ from FML to Markdown\n\ndoxia-converter cannot target FML usefully - the questions come out as\nlink-reference syntax rather than headings, the [top] back-links become\nlinks to a nonexistent \u0027top\u0027 page, and the contents links lose their #\nanchors. The page is written out by hand instead.\n\nExplicit anchors keep the existing deep links working. FML routes every\n\u003cfaq id\u003e through DoxiaUtils.encodeId, which rewrites an id that is not a\nvalid XML name: a space becomes \u0027_\u0027 and any other character becomes its\ndot-prefixed UTF-8 bytes, so \u0027,\u0027 becomes .2C and \u0027?\u0027 becomes .3F. The\n\u003ca name\u003e elements emitted here reproduce that rendered form, not the raw\nattribute, so the live URLs still resolve.\n\nProse double quotes are written as \u0026quot; entities: flexmark\u0027s smart\npunctuation would otherwise turn a straight quote into a typographic\none and silently change the visible text. That matches the convention\nalready used by the Markdown pages in this estate.\n\nVerified by building the site before and after and comparing the set of\nanchors the generated faq.html actually serves. All 7 anchors present\nbefore are still present after (13 after, the extra ones being the ids\nDoxia derives from the new headings):\n\n  What_are_the_benefits_of_DOAP\n  What_is_DOAP\n  What_to_do_with_the_generated_DOAP_file\n  Why_are_not_all_developers.2Fcontributors_listed_in_the_DOAP_file_as_maintainer\n  Why_would_I_use_DOAP_when_I_have_a_POM\n  bodyColumn\n  top\n\nThe \u003chead\u003e is byte-identical, so the title and metadata are unchanged.\nsite.xml needs no edit - src/site/fml/faq.fml and\nsrc/site/markdown/faq.md both render to faq.html.\n\nFML generates a [top] back-link after each answer; those are dropped\nrather than hand-written. The question renders as an h3 heading rather\nthan a definition term. Those are the only rendering losses.\n\nAnchors are written as \u003ca id\u003e, not \u003ca name\u003e: maven-site-plugin 3.21.0 drops\nthe name attribute from inline HTML anchors while 3.22.0 keeps it, and\nXhtml5BaseParser reads Attribute.ID first and only falls back to NAME. id is\nthe primary path and the correct HTML5 form; name on \u003ca\u003e is obsolete.\n\nAn explicit anchor is emitted only where it is actually needed. Doxia already\nderives an id for each heading, and where that derived id is byte-identical to\nthe anchor the site serves today, a second explicit anchor would only produce a\nduplicate id and a \"used more than once\" warning. Those are omitted; the\nheading serves the URL. The anchors that remain are the ones where the FML id\nand the question text differ, and the page would otherwise lose the URL.\n\nGenerated-by: Claude Opus 5 (1M context)\n"
    },
    {
      "commit": "5ae8605dd53142dec45211a65442a560d1123039",
      "tree": "26397a8e99ae75a407fc37b020d1f7a5bcb69259",
      "parents": [
        "f82cd62f0b0f0466cb59821a373cdf255d943769"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 01:51:33 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 02:26:58 2026 +0200"
      },
      "message": "Rename the FAQ ahead of converting it\n\nGit records a rename plus a rewrite in one commit as a delete and an\nadd, which stops \u0027git log --follow\u0027. Splitting the rename out keeps the\nhistory. Please merge or rebase rather than squash.\n\nGenerated-by: Claude Opus 5 (1M context)\n"
    },
    {
      "commit": "f82cd62f0b0f0466cb59821a373cdf255d943769",
      "tree": "13d935ca508fbbb0b7c02c1272e8c38da5285363",
      "parents": [
        "33b0e0a1e4300fcc9c04929cce1ce17e0b8d5bcd"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Aug 07 11:41:09 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Aug 07 16:19:02 2026 +0200"
      },
      "message": "Restore the document metadata dropped when the pages were ported\n\nAn APT document opens with a header block giving its title, authors and date, and\ndoxia-converter turns that into YAML front matter. The port removed the front\nmatter along with the converter\u0027s per-line licence comments, so the generated\npages lost their author and date meta tags, and took their title from the first\nheading rather than from the document title.\n\nThe front matter has to come first in the file: the Markdown parser only looks for\nit when the source begins with \"---\". A licence header ahead of it would hide it,\nand RAT is happy either way.\n"
    },
    {
      "commit": "33b0e0a1e4300fcc9c04929cce1ce17e0b8d5bcd",
      "tree": "0c70a35842890a1007d688cbc6aab25566ab1e96",
      "parents": [
        "41bf4c00a3de632de5d78ebddf62fa7ee2479d67"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 13:53:00 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 15:26:17 2026 +0200"
      },
      "message": "Port the site documentation from APT to Markdown\n\n6 page(s) converted with doxia-converter and then cleaned up by hand:\n\n- \u003c\u003c\u003ccode\u003e\u003e\u003e becomes backticks, \u003c\u003cbold\u003e\u003e becomes **bold**, {{{url}text}}\n  becomes [text](url)\n- the ASF license header becomes a single block HTML comment\n- a page whose only Velocity reference was ${project.name} is now a plain\n  .md with the title spelled out\n- a page that keeps a reference stays a .vm. Velocity reads ## as a line\n  comment and would silently swallow every ATX heading below level one, so\n  subsections use setext underlines and anything deeper is wrapped in\n  #[[ ... ]]#\n- references APT rendered literally are escaped, so they do not resolve\n\nVerified by building the site before and after and comparing every\ngenerated page: the visible text and the link targets are unchanged apart\nfrom \u003cb\u003e/\u003ci\u003e becoming \u003cstrong\u003e/\u003cem\u003e and quotes in prose picking up the\nMarkdown module\u0027s typographic substitution.\n"
    },
    {
      "commit": "41bf4c00a3de632de5d78ebddf62fa7ee2479d67",
      "tree": "8efb4063095ecac908e146a112c0c62b8cd1e5bd",
      "parents": [
        "6145c92798a0feea00ae0a013350535d166e0afe"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 13:53:00 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 15:26:17 2026 +0200"
      },
      "message": "Rename the site documents ahead of converting them\n\nA pure rename, so that git records it and `git log --follow` and `git blame` still\nreach the history of each page after the conversion that follows. The content is\nstill APT at this point and the site does not build between the two commits.\n"
    },
    {
      "commit": "6145c92798a0feea00ae0a013350535d166e0afe",
      "tree": "e0771783dfe9816d4127653607c9ecd91cb2a96e",
      "parents": [
        "a4b0b5dee8a05753132292fa4a315df5294ff743"
      ],
      "author": {
        "name": "hutiefang",
        "email": "hutiefang@qq.com",
        "time": "Sun Jun 21 09:49:01 2026 +0800"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Wed Aug 05 23:55:52 2026 +0200"
      },
      "message": "[MDOAP-70] Make fetchURL throw NPE for null URL\n"
    },
    {
      "commit": "a4b0b5dee8a05753132292fa4a315df5294ff743",
      "tree": "0a7fa7032aea5659d9ace78dfab64ab1be756f37",
      "parents": [
        "59ef5298c35ed9d9298ca6583eb00e8dc5653623"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Tue Aug 04 22:05:12 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Tue Aug 04 22:25:26 2026 +0200"
      },
      "message": "Verify the build against Maven 4 as well\n\nAdds maven4-enabled, which appends the Maven 4 version to the existing\nMaven 3 matrix rather than replacing it, so the plugin keeps being built\nand tested with Maven 3 and additionally gets checked against 4.0.0-rc-6.\n\nPart of finding out which Maven 3 plugins already build clean on Maven 4\nahead of the 4.0.0 GA.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\n"
    },
    {
      "commit": "59ef5298c35ed9d9298ca6583eb00e8dc5653623",
      "tree": "b3ab65c43ece918c25ca92270fc838e6fd773922",
      "parents": [
        "a36253f58cb2ac2399caf2347b936dd42f0678f3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jul 14 13:55:56 2026 +0000"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat Jul 18 09:45:02 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml\n  dependency-version: \u00275\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "a36253f58cb2ac2399caf2347b936dd42f0678f3",
      "tree": "a51cbe40afd29f47a92a5a918b04dac9fcb7781a",
      "parents": [
        "12c7f61b4bd93f2afbcd8c7f429d70a30ed712ba"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 15 06:46:15 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 15 06:46:15 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml (#163)\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml\n  dependency-version: \u00275\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "12c7f61b4bd93f2afbcd8c7f429d70a30ed712ba",
      "tree": "c6dc3df3aba8a7b4ce75401828abf8b7cbe192da",
      "parents": [
        "1a81b8fcc414761fec616426d869470ca6cfe46a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 15 06:46:05 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 15 06:46:05 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/pr-automation.yml (#160)\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/pr-automation.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/pr-automation.yml\n  dependency-version: \u00275\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1a81b8fcc414761fec616426d869470ca6cfe46a",
      "tree": "61f02399d94828bc3a277ab461189ff0052ba6bd",
      "parents": [
        "7a2f6df663bee3a6eb53952ca0f6ac44d2eb6666"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 15 06:45:51 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 15 06:45:51 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/stale.yml (#161)\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/stale.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/stale.yml\n  dependency-version: \u00275\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "7a2f6df663bee3a6eb53952ca0f6ac44d2eb6666",
      "tree": "1321130c3d55a59b2d721149b32ce696547fc66a",
      "parents": [
        "a2532680cbe7636aea3bbbecc419a58a25d26233"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 17:13:13 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 17:13:13 2026 +0200"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 48 to 49 (#159)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 48 to 49.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002749\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "a2532680cbe7636aea3bbbecc419a58a25d26233",
      "tree": "4f05cc7cb75f4ef13c9ff8e19ba2c06e63a1a0fb",
      "parents": [
        "d8748ce7b0a0d44d7c154d37a736e9e48df19d88"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 19 06:52:04 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 19 06:52:04 2026 +0200"
      },
      "message": "Bump mavenVersion from 3.9.15 to 3.9.16 (#155)\n\nBumps `mavenVersion` from 3.9.15 to 3.9.16.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.15 to 3.9.16\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.15...maven-3.9.16)\n\nUpdates `org.apache.maven:maven-core` from 3.9.15 to 3.9.16\n\nUpdates `org.apache.maven:maven-compat` from 3.9.15 to 3.9.16\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.15...maven-3.9.16)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.15 to 3.9.16\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.15 to 3.9.16\n\nUpdates `org.apache.maven:maven-model` from 3.9.15 to 3.9.16\n\nUpdates `org.apache.maven:maven-repository-metadata` from 3.9.15 to 3.9.16\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-repository-metadata\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "d8748ce7b0a0d44d7c154d37a736e9e48df19d88",
      "tree": "89a86e5b1cca390772c461deb77fb2176a6f8707",
      "parents": [
        "bddb620eebc4245a1aca1437723ac876c088f195"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat May 16 22:20:38 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 16 22:20:38 2026 +0200"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 47 to 48 (#153)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 47 to 48.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002748\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "bddb620eebc4245a1aca1437723ac876c088f195",
      "tree": "7c8a80e1797e45bc223293054424d3784844eae0",
      "parents": [
        "45ca6bcc56d1e30e239a3a7b27ccaf511a125a6e"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Apr 18 12:47:38 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Apr 18 12:47:38 2026 +0200"
      },
      "message": "Bump mavenVersion from 3.9.14 to 3.9.15 (#151)\n\nBumps `mavenVersion` from 3.9.14 to 3.9.15.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.14 to 3.9.15\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.14...maven-3.9.15)\n\nUpdates `org.apache.maven:maven-core` from 3.9.14 to 3.9.15\n\nUpdates `org.apache.maven:maven-compat` from 3.9.14 to 3.9.15\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.14...maven-3.9.15)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.14 to 3.9.15\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.14 to 3.9.15\n\nUpdates `org.apache.maven:maven-model` from 3.9.14 to 3.9.15\n\nUpdates `org.apache.maven:maven-repository-metadata` from 3.9.14 to 3.9.15\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-repository-metadata\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "45ca6bcc56d1e30e239a3a7b27ccaf511a125a6e",
      "tree": "ea48765e31ed8a931bd3a5508d96f4467ed1f7c4",
      "parents": [
        "6a4ded1fe02106efb6c9975c7de9d051198c34c5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 16 17:46:18 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 16 17:46:18 2026 +0100"
      },
      "message": "Bump mavenVersion from 3.9.13 to 3.9.14 (#150)\n\nBumps `mavenVersion` from 3.9.13 to 3.9.14.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.13 to 3.9.14\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.13...maven-3.9.14)\n\nUpdates `org.apache.maven:maven-core` from 3.9.13 to 3.9.14\n\nUpdates `org.apache.maven:maven-compat` from 3.9.13 to 3.9.14\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.13...maven-3.9.14)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.13 to 3.9.14\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.13 to 3.9.14\n\nUpdates `org.apache.maven:maven-model` from 3.9.13 to 3.9.14\n\nUpdates `org.apache.maven:maven-repository-metadata` from 3.9.13 to 3.9.14\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-repository-metadata\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "6a4ded1fe02106efb6c9975c7de9d051198c34c5",
      "tree": "a6ef9120c4b5ccd8ce2add090b791b6ddf84f615",
      "parents": [
        "93d23c0b2832c40eec02f36a8ab5e9f75bca451f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Mar 06 17:14:57 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Mar 06 17:14:57 2026 +0100"
      },
      "message": "Bump mavenVersion from 3.9.12 to 3.9.13 (#149)\n\nBumps `mavenVersion` from 3.9.12 to 3.9.13.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.12 to 3.9.13\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.12...maven-3.9.13)\n\nUpdates `org.apache.maven:maven-core` from 3.9.12 to 3.9.13\n\nUpdates `org.apache.maven:maven-compat` from 3.9.12 to 3.9.13\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.12...maven-3.9.13)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.12 to 3.9.13\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.12 to 3.9.13\n\nUpdates `org.apache.maven:maven-model` from 3.9.12 to 3.9.13\n\nUpdates `org.apache.maven:maven-repository-metadata` from 3.9.12 to 3.9.13\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.13\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.13\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.13\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.13\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.13\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.13\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-repository-metadata\n  dependency-version: 3.9.13\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "93d23c0b2832c40eec02f36a8ab5e9f75bca451f",
      "tree": "0467b5bce5eacd386deb690a9eb7ae33267195b7",
      "parents": [
        "93b98edf115704a6ebdcf900fa6e3d226eae4872"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Feb 24 07:52:42 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Feb 24 07:52:42 2026 +0100"
      },
      "message": "Bump resolverVersion from 1.9.26 to 1.9.27 (#148)\n\nBumps `resolverVersion` from 1.9.26 to 1.9.27.\n\nUpdates `org.apache.maven.resolver:maven-resolver-api` from 1.9.26 to 1.9.27\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.26...maven-resolver-1.9.27)\n\nUpdates `org.apache.maven.resolver:maven-resolver-impl` from 1.9.26 to 1.9.27\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.26...maven-resolver-1.9.27)\n\nUpdates `org.apache.maven.resolver:maven-resolver-spi` from 1.9.26 to 1.9.27\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.26...maven-resolver-1.9.27)\n\nUpdates `org.apache.maven.resolver:maven-resolver-connector-basic` from 1.9.26 to 1.9.27\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.26...maven-resolver-1.9.27)\n\nUpdates `org.apache.maven.resolver:maven-resolver-transport-wagon` from 1.9.26 to 1.9.27\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.26...maven-resolver-1.9.27)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.resolver:maven-resolver-api\n  dependency-version: 1.9.27\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-impl\n  dependency-version: 1.9.27\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-spi\n  dependency-version: 1.9.27\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-connector-basic\n  dependency-version: 1.9.27\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-transport-wagon\n  dependency-version: 1.9.27\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "93b98edf115704a6ebdcf900fa6e3d226eae4872",
      "tree": "57402ee3bc464363a5654302368c53accfe201ea",
      "parents": [
        "c3dc1a12ad5639c8121a0bc8e8aca33d67c1807d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Feb 17 18:48:06 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Feb 17 18:48:06 2026 +0100"
      },
      "message": "Bump resolverVersion from 1.9.25 to 1.9.26 (#147)\n\nBumps `resolverVersion` from 1.9.25 to 1.9.26.\n\nUpdates `org.apache.maven.resolver:maven-resolver-api` from 1.9.25 to 1.9.26\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.25...maven-resolver-1.9.26)\n\nUpdates `org.apache.maven.resolver:maven-resolver-impl` from 1.9.25 to 1.9.26\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.25...maven-resolver-1.9.26)\n\nUpdates `org.apache.maven.resolver:maven-resolver-spi` from 1.9.25 to 1.9.26\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.25...maven-resolver-1.9.26)\n\nUpdates `org.apache.maven.resolver:maven-resolver-connector-basic` from 1.9.25 to 1.9.26\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.25...maven-resolver-1.9.26)\n\nUpdates `org.apache.maven.resolver:maven-resolver-transport-wagon` from 1.9.25 to 1.9.26\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.25...maven-resolver-1.9.26)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.resolver:maven-resolver-api\n  dependency-version: 1.9.26\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-impl\n  dependency-version: 1.9.26\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-spi\n  dependency-version: 1.9.26\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-connector-basic\n  dependency-version: 1.9.26\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-transport-wagon\n  dependency-version: 1.9.26\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "c3dc1a12ad5639c8121a0bc8e8aca33d67c1807d",
      "tree": "1dda932a3f2f95a7cc33a9d86f9104ce787c2894",
      "parents": [
        "f579128c529f8b2ba1370856256c0bab98ce743e"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Fri Feb 13 19:49:07 2026 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Fri Feb 13 21:44:46 2026 +0100"
      },
      "message": "Migrate tests to JUnit5 - avoid using AbstractMojoTestCase, PlexusTestCase\n"
    },
    {
      "commit": "f579128c529f8b2ba1370856256c0bab98ce743e",
      "tree": "1fe067c9b71f9813a654f4e162a10664f2770cef",
      "parents": [
        "dabead00c70bce8454dbca6e9fd26d2ba37a136b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 09 15:38:44 2026 +0000"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Feb 09 21:40:43 2026 +0100"
      },
      "message": "Bump org.eclipse.sisu:org.eclipse.sisu.plexus from 0.9.0.M4 to 1.0.0\n\nBumps [org.eclipse.sisu:org.eclipse.sisu.plexus](https://github.com/eclipse-sisu/sisu-project) from 0.9.0.M4 to 1.0.0.\n- [Release notes](https://github.com/eclipse-sisu/sisu-project/releases)\n- [Changelog](https://github.com/eclipse-sisu/sisu-project/blob/main/RELEASE.md)\n- [Commits](https://github.com/eclipse-sisu/sisu-project/compare/milestones/0.9.0.M4...releases/1.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.eclipse.sisu:org.eclipse.sisu.plexus\n  dependency-version: 1.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "dabead00c70bce8454dbca6e9fd26d2ba37a136b",
      "tree": "d6a079191bdc1d46d73b7a750ce24b6cb7f04e2c",
      "parents": [
        "09ee13da6922df47d5954f4ee52f824ef5ccbc67"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 09 15:37:45 2026 +0000"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Feb 09 20:19:26 2026 +0100"
      },
      "message": "Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness\n\nBumps org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.4.0 to 3.5.1.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-harness\n  dependency-version: 3.5.1\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "09ee13da6922df47d5954f4ee52f824ef5ccbc67",
      "tree": "c5cbe42bbcd27038c73fa64da56a07cf9bb89a40",
      "parents": [
        "b13da960795fba955917399e7cb7db763fe20edc"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jan 19 17:08:37 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 19 17:08:37 2026 +0100"
      },
      "message": "Bump org.codehaus.mojo:l10n-maven-plugin from 1.1.0 to 1.2.0 (#141)\n\nBumps [org.codehaus.mojo:l10n-maven-plugin](https://github.com/mojohaus/l10n-maven-plugin) from 1.1.0 to 1.2.0.\n- [Release notes](https://github.com/mojohaus/l10n-maven-plugin/releases)\n- [Commits](https://github.com/mojohaus/l10n-maven-plugin/compare/1.1.0...l10n-maven-plugin-1.2.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:l10n-maven-plugin\n  dependency-version: 1.2.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "b13da960795fba955917399e7cb7db763fe20edc",
      "tree": "10ff02ee36479f8ca98f5a2518ca58f519de39c9",
      "parents": [
        "4c05777e0610a964ddd9110f80e3c0ec7a7f639f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jan 13 17:48:17 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jan 13 17:48:17 2026 +0100"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 46 to 47 (#140)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 46 to 47.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002747\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "4c05777e0610a964ddd9110f80e3c0ec7a7f639f",
      "tree": "403b6759413fd0737c427d3335fea90c62b91bca",
      "parents": [
        "6d683b2a5ac5816c314b633597e6dda0cd85ded6"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jan 07 18:05:49 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 07 18:05:49 2026 +0100"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 45 to 46 (#138)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 45 to 46.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002746\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "6d683b2a5ac5816c314b633597e6dda0cd85ded6",
      "tree": "3e7b1ae065741f9568af150dceb36393a097ccf4",
      "parents": [
        "24fe81ec586214f01743744183a591830c464d75"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Dec 21 16:32:12 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Dec 21 17:06:36 2025 +0100"
      },
      "message": "Cleanup ITs\n"
    },
    {
      "commit": "24fe81ec586214f01743744183a591830c464d75",
      "tree": "4055f6b4e5f56aa81c87d5e979c7d5af36492af3",
      "parents": [
        "1ac56639962dda78e6d17540b8b5a7ee749af0e9"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Dec 17 18:37:41 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Dec 17 18:37:41 2025 +0100"
      },
      "message": "Bump mavenVersion from 3.9.11 to 3.9.12 (#135)\n\nBumps `mavenVersion` from 3.9.11 to 3.9.12.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.11 to 3.9.12\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.11...maven-3.9.12)\n\nUpdates `org.apache.maven:maven-core` from 3.9.11 to 3.9.12\n\nUpdates `org.apache.maven:maven-compat` from 3.9.11 to 3.9.12\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.11...maven-3.9.12)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.11 to 3.9.12\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.11 to 3.9.12\n\nUpdates `org.apache.maven:maven-model` from 3.9.11 to 3.9.12\n\nUpdates `org.apache.maven:maven-repository-metadata` from 3.9.11 to 3.9.12\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-repository-metadata\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1ac56639962dda78e6d17540b8b5a7ee749af0e9",
      "tree": "5fb03362c3c1feae1717c0b4f53ebf03f5e398df",
      "parents": [
        "045e17ed9b22d7acc2d4d5bcceb9d92f5615fb26"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Dec 16 13:04:44 2025 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Tue Dec 16 17:12:01 2025 +0100"
      },
      "message": "Bump resolverVersion from 1.9.24 to 1.9.25\n\nBumps `resolverVersion` from 1.9.24 to 1.9.25.\n\nUpdates `org.apache.maven.resolver:maven-resolver-api` from 1.9.24 to 1.9.25\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.24...maven-resolver-1.9.25)\n\nUpdates `org.apache.maven.resolver:maven-resolver-impl` from 1.9.24 to 1.9.25\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.24...maven-resolver-1.9.25)\n\nUpdates `org.apache.maven.resolver:maven-resolver-spi` from 1.9.24 to 1.9.25\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.24...maven-resolver-1.9.25)\n\nUpdates `org.apache.maven.resolver:maven-resolver-connector-basic` from 1.9.24 to 1.9.25\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.24...maven-resolver-1.9.25)\n\nUpdates `org.apache.maven.resolver:maven-resolver-transport-wagon` from 1.9.24 to 1.9.25\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.9.24...maven-resolver-1.9.25)\n\nUpdates `org.apache.maven.resolver:maven-resolver-transport-http` from 1.9.24 to 1.9.25\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.resolver:maven-resolver-api\n  dependency-version: 1.9.25\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-impl\n  dependency-version: 1.9.25\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-spi\n  dependency-version: 1.9.25\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-connector-basic\n  dependency-version: 1.9.25\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-transport-wagon\n  dependency-version: 1.9.25\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.resolver:maven-resolver-transport-http\n  dependency-version: 1.9.25\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "045e17ed9b22d7acc2d4d5bcceb9d92f5615fb26",
      "tree": "3e98514562634b786ba8c3bbaa06615ebc1bcc0f",
      "parents": [
        "401c11921bdbd1e5a57d8a4c252226536af25f48"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Tue Dec 16 12:17:42 2025 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Dec 16 12:17:42 2025 +0000"
      },
      "message": "Use Maven Resolver intead of HTTP components (#133)\n\n* Deprecate fetchURL\n* existence check"
    },
    {
      "commit": "401c11921bdbd1e5a57d8a4c252226536af25f48",
      "tree": "5a3c12fb1a1c4b2d0631fe6f25a69ef9c74508bf",
      "parents": [
        "758f1e42fac8e81ce5fd9830072b466b37481f66"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Dec 10 19:45:26 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Dec 10 19:45:26 2025 +0100"
      },
      "message": "Bump resolverVersion from 1.4.1 to 1.9.25 (#131)\n\nBumps `resolverVersion` from 1.4.1 to 1.9.25.\n\nUpdates `org.apache.maven.resolver:maven-resolver-connector-basic` from 1.4.1 to 1.9.25\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.4.1...maven-resolver-1.9.25)\n\nUpdates `org.apache.maven.resolver:maven-resolver-transport-wagon` from 1.4.1 to 1.9.25\n- [Release notes](https://github.com/apache/maven-resolver/releases)\n- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-1.4.1...maven-resolver-1.9.25)\n\nUpdates `org.apache.maven.resolver:maven-resolver-transport-http` from 1.4.1 to 1.9.25\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.resolver:maven-resolver-connector-basic\n  dependency-version: 1.9.25\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.maven.resolver:maven-resolver-transport-wagon\n  dependency-version: 1.9.25\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.maven.resolver:maven-resolver-transport-http\n  dependency-version: 1.9.25\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "758f1e42fac8e81ce5fd9830072b466b37481f66",
      "tree": "5c95c4ca0fed513c1f331ca1a8bdf6806cb6482f",
      "parents": [
        "05faf774ae72ed83f96377080728f50ccf149eed"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Thu Nov 27 05:51:14 2025 -0600"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Nov 27 05:51:14 2025 -0600"
      },
      "message": "Follow Oracle Javadoc conventions (#129)\n\n"
    },
    {
      "commit": "05faf774ae72ed83f96377080728f50ccf149eed",
      "tree": "23560ee17067be6569559fc148f6d60118212dd4",
      "parents": [
        "b08d5b9f3795266cab3fb72823e0fb9a854d6c6e"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Wed Nov 26 13:45:58 2025 -0600"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Nov 26 13:45:58 2025 -0600"
      },
      "message": "Declare used dependencies (#128)\n\n* Declare used dependencies"
    },
    {
      "commit": "b08d5b9f3795266cab3fb72823e0fb9a854d6c6e",
      "tree": "4fdbcee01af3715cd442fb4b69da364055bba798",
      "parents": [
        "2cdad7abd584a5804503bda5311f9893111c1651"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Tue Nov 25 07:31:37 2025 -0600"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Nov 25 07:31:37 2025 -0600"
      },
      "message": "fix (#127)\n\n"
    },
    {
      "commit": "2cdad7abd584a5804503bda5311f9893111c1651",
      "tree": "a09602b6728d8979d45d87cf22fd48fa2e285923",
      "parents": [
        "551bef159d4d5fa24fe15136d7a8182538c6668f"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Nov 24 21:16:28 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Nov 24 21:16:28 2025 +0100"
      },
      "message": "[maven-release-plugin] prepare for next development iteration\n"
    },
    {
      "commit": "551bef159d4d5fa24fe15136d7a8182538c6668f",
      "tree": "9e3034835506c51a0e44743725e132c99b027b22",
      "parents": [
        "822432f61237f658e364b7b04482086dd852373c"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Nov 24 21:16:20 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Nov 24 21:16:20 2025 +0100"
      },
      "message": "[maven-release-plugin] prepare release maven-doap-plugin-3.0.0-M1\n"
    },
    {
      "commit": "822432f61237f658e364b7b04482086dd852373c",
      "tree": "d71af01e5a90f3d3014bfdecbbbae141dda03edc",
      "parents": [
        "8ee429704555e584a107accc4b2f790443ea399d"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Nov 22 22:57:43 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Nov 22 23:03:15 2025 +0100"
      },
      "message": "Bump Maven to 3.9.11 - Plugin prerequisite 3.6.3\n"
    },
    {
      "commit": "8ee429704555e584a107accc4b2f790443ea399d",
      "tree": "e58b2178da6f2297b749abd4999fa7fa4685cad7",
      "parents": [
        "9ee74e573273b04fb05139a8e915e1c5935d9935"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Nov 10 17:12:33 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Nov 10 17:12:33 2025 +0100"
      },
      "message": "Bump org.codehaus.plexus:plexus-i18n from 1.0.0 to 1.1.0 (#123)\n\nBumps [org.codehaus.plexus:plexus-i18n](https://github.com/codehaus-plexus/plexus-i18n) from 1.0.0 to 1.1.0.\n- [Release notes](https://github.com/codehaus-plexus/plexus-i18n/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-i18n/compare/plexus-i18n-1.0.0...plexus-i18n-1.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-i18n\n  dependency-version: 1.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "9ee74e573273b04fb05139a8e915e1c5935d9935",
      "tree": "4a03562d0e85fa1507ca6a48a32f4a49e734b453",
      "parents": [
        "fcb48e2710db28f9cb585ea91e74438ff16a5ba1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Nov 10 17:12:17 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Nov 10 17:12:17 2025 +0100"
      },
      "message": "Bump org.codehaus.plexus:plexus-interpolation from 1.28 to 1.29 (#122)\n\nBumps [org.codehaus.plexus:plexus-interpolation](https://github.com/codehaus-plexus/plexus-interpolation) from 1.28 to 1.29.\n- [Release notes](https://github.com/codehaus-plexus/plexus-interpolation/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-interpolation/compare/plexus-interpolation-1.28...plexus-interpolation-1.29)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-interpolation\n  dependency-version: \u00271.29\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "fcb48e2710db28f9cb585ea91e74438ff16a5ba1",
      "tree": "6b6efca38f1ba1e7a326171db62c872fd0471346",
      "parents": [
        "62e79a5f31f9f36f06319917110238f614483435"
      ],
      "author": {
        "name": "Matthias Bünger",
        "email": "Bukama@users.noreply.github.com",
        "time": "Sun Oct 26 18:00:17 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Oct 26 18:00:17 2025 +0100"
      },
      "message": "Update parent to 45 (#118)\n\n"
    },
    {
      "commit": "62e79a5f31f9f36f06319917110238f614483435",
      "tree": "ca4d4a5dbe7cccb5fca23a6784f87291b79fa25e",
      "parents": [
        "a807eb3e5b184a2dff692c70c2a63ccce570eb02"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Sep 26 13:04:46 2025 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Sep 28 12:15:21 2025 +0200"
      },
      "message": "Bump scmVersion from 2.1.0 to 2.2.1\n\nBumps `scmVersion` from 2.1.0 to 2.2.1.\n\nUpdates `org.apache.maven.scm:maven-scm-api` from 2.1.0 to 2.2.1\n- [Release notes](https://github.com/apache/maven-scm/releases)\n- [Commits](https://github.com/apache/maven-scm/compare/maven-scm-2.1.0...v2.2.1)\n\nUpdates `org.apache.maven.scm:maven-scm-manager-plexus` from 2.1.0 to 2.2.1\n\nUpdates `org.apache.maven.scm:maven-scm-provider-svnexe` from 2.1.0 to 2.2.1\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.scm:maven-scm-api\n  dependency-version: 2.2.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.maven.scm:maven-scm-manager-plexus\n  dependency-version: 2.2.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.maven.scm:maven-scm-provider-svnexe\n  dependency-version: 2.2.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "a807eb3e5b184a2dff692c70c2a63ccce570eb02",
      "tree": "f83cac432bccaf0acf9b7fe47bc3e48a74de1aa5",
      "parents": [
        "3cafc9d96ccafff3bce7d541f993b9aada6bd91f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Aug 27 19:05:51 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Aug 27 19:05:51 2025 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-i18n from 1.0-beta-10 to 1.0.0 (#116)\n\nBumps [org.codehaus.plexus:plexus-i18n](https://github.com/codehaus-plexus/plexus-i18n) from 1.0-beta-10 to 1.0.0.\n- [Release notes](https://github.com/codehaus-plexus/plexus-i18n/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-i18n/commits/plexus-i18n-1.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-i18n\n  dependency-version: 1.0.0\n  dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "3cafc9d96ccafff3bce7d541f993b9aada6bd91f",
      "tree": "ddb3436f112a6c3802cd0e9bebd139a718bd70f9",
      "parents": [
        "537924e9577e729f04daa920e2e2ad82e7f0d9d6"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Thu Aug 14 07:35:01 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Aug 14 07:35:01 2025 +0200"
      },
      "message": "feat: enable prevent branch protection rules (#114)\n\nalso:\n- refactor deprected config\n- remove unnecessary jira config\n\nSigned-off-by: Sandra Parsick \u003csandra@parsick.dev\u003e"
    },
    {
      "commit": "537924e9577e729f04daa920e2e2ad82e7f0d9d6",
      "tree": "6e3e7a000c5a9b76326961c7b3e04b8a35ce8390",
      "parents": [
        "4cdf5e60bcc6817b933fe713f94b5c087ccaa37a"
      ],
      "author": {
        "name": "Ndacyayisenga-droid",
        "email": "ndacyayinoah@gmail.com",
        "time": "Thu Jul 17 02:57:19 2025 +0300"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 07 00:37:12 2025 +0300"
      },
      "message": "Add Apache 2.0 LICENSE file\n"
    },
    {
      "commit": "4cdf5e60bcc6817b933fe713f94b5c087ccaa37a",
      "tree": "028b31a3b0f3630980858cd0949e3f9d453b38ff",
      "parents": [
        "d7324fccc45f4455e9dd660be3eb2163d2fc3e89"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 08:59:46 2025 +0200"
      },
      "committer": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 09:04:33 2025 +0200"
      },
      "message": "Enable notification"
    },
    {
      "commit": "d7324fccc45f4455e9dd660be3eb2163d2fc3e89",
      "tree": "db85ed3f1e52702d6c6edff9103ef2fe9bc96d2c",
      "parents": [
        "44a94d320ef0bc415f3304700254c76e3c8f9619"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 09:01:42 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 13 09:01:42 2025 +0200"
      },
      "message": "remove jira link (#108)\n\n"
    },
    {
      "commit": "44a94d320ef0bc415f3304700254c76e3c8f9619",
      "tree": "7cd06eb5cf8603d35b8c97e18d867c676bbe5466",
      "parents": [
        "6972654904af659964ab7941b56221403243a8e2"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Thu Jun 12 14:56:38 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 12 14:56:38 2025 +0200"
      },
      "message": "Temporary disabling notification for issue migration\n\n"
    },
    {
      "commit": "6972654904af659964ab7941b56221403243a8e2",
      "tree": "f01acfdf9cbaaebf11b3d968de7fe0372f05e796",
      "parents": [
        "455673d9f1b43fafee8e3efb4326ade574159432"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 07 14:37:07 2025 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Wed Apr 30 00:23:32 2025 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-interpolation from 1.26 to 1.28\n\nBumps [org.codehaus.plexus:plexus-interpolation](https://github.com/codehaus-plexus/plexus-interpolation) from 1.26 to 1.28.\n- [Release notes](https://github.com/codehaus-plexus/plexus-interpolation/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-interpolation/compare/plexus-interpolation-1.26...plexus-interpolation-1.28)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-interpolation\n  dependency-version: \u00271.28\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "455673d9f1b43fafee8e3efb4326ade574159432",
      "tree": "f2c2ae224124976e6d1ed33ab5606a9acd3c4158",
      "parents": [
        "2116ef1a10df19c8228e466042247680db7e2d5e"
      ],
      "author": {
        "name": "Matthias Bünger",
        "email": "Bukama@users.noreply.github.com",
        "time": "Fri Apr 25 17:09:04 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 25 17:09:04 2025 +0200"
      },
      "message": "Enabhle GH issues (#39)\n\n"
    },
    {
      "commit": "2116ef1a10df19c8228e466042247680db7e2d5e",
      "tree": "8a8895d752d81026e0d95034514872f4e04c72e4",
      "parents": [
        "004af7671df2af41a09f0e120ec1edb933b27130"
      ],
      "author": {
        "name": "Matthias Bünger",
        "email": "Bukama@users.noreply.github.com",
        "time": "Sat Feb 15 13:50:33 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Feb 15 13:50:33 2025 +0100"
      },
      "message": "[MNGSITE-529] Rename \"Goals\" to \"Plugin Documentation\"\n\n"
    },
    {
      "commit": "004af7671df2af41a09f0e120ec1edb933b27130",
      "tree": "30189d7214aea368d4f3b244120a76b35d06dac7",
      "parents": [
        "d588eb881f6a2233e4675e6c171a06d370046d27"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Jan 26 16:02:33 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Jan 27 15:46:12 2025 +0100"
      },
      "message": "[MDOAP-72] Require Maven 3.6.3\n"
    },
    {
      "commit": "d588eb881f6a2233e4675e6c171a06d370046d27",
      "tree": "c8e6b28696745c931916bd00f6fe1e10b3e887bf",
      "parents": [
        "014b0e8bcb65bf55d6062497e020bb2dd9cd3676"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Jan 26 15:42:25 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Jan 26 15:47:18 2025 +0100"
      },
      "message": "[MDOAP-68] Upgrade parent pom to 43\n"
    },
    {
      "commit": "014b0e8bcb65bf55d6062497e020bb2dd9cd3676",
      "tree": "06359eb4a0d54c6c3c3aec7704655b095682ff1f",
      "parents": [
        "1621caba509f8333c60a549f8e8f102ab656cb79"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Jan 26 15:34:05 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 26 15:34:05 2025 +0100"
      },
      "message": "[MDOAP-71] Bump scmVersion from 1.12.2 to 2.1.0 (#25)\n\nBumps `scmVersion` from 1.12.2 to 2.1.0.\n\nUpdates `org.apache.maven.scm:maven-scm-api` from 1.12.2 to 2.1.0\n- [Commits](https://github.com/apache/maven-scm/compare/maven-scm-1.12.2...maven-scm-2.1.0)\n\nUpdates `org.apache.maven.scm:maven-scm-manager-plexus` from 1.12.2 to 2.1.0\n\nUpdates `org.apache.maven.scm:maven-scm-provider-svnexe` from 1.12.2 to 2.1.0\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.scm:maven-scm-api\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n- dependency-name: org.apache.maven.scm:maven-scm-manager-plexus\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n- dependency-name: org.apache.maven.scm:maven-scm-provider-svnexe\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1621caba509f8333c60a549f8e8f102ab656cb79",
      "tree": "726e9c3b919fbcec47627691c3689bc5dce1656b",
      "parents": [
        "546e8dcab1776694cedd5a51e2de9ae88fa13060"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Dec 16 13:55:12 2024 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Wed Jan 15 22:45:12 2025 +0100"
      },
      "message": "Bump org.codehaus.mojo:l10n-maven-plugin from 1.0.0 to 1.1.0\n\nBumps [org.codehaus.mojo:l10n-maven-plugin](https://github.com/mojohaus/l10n-maven-plugin) from 1.0.0 to 1.1.0.\n- [Release notes](https://github.com/mojohaus/l10n-maven-plugin/releases)\n- [Commits](https://github.com/mojohaus/l10n-maven-plugin/compare/l10n-maven-plugin-1.0.0...1.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:l10n-maven-plugin\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "546e8dcab1776694cedd5a51e2de9ae88fa13060",
      "tree": "d5bcefe67e08fdef3adbed6045873c87cb405ed4",
      "parents": [
        "0551698402c2e5b91b9f728b7c86f4b008eca8a9"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Fri Dec 20 23:40:38 2024 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 20 23:40:38 2024 +0000"
      },
      "message": "Use try with resources (#28)\n\n* Use try with resources"
    },
    {
      "commit": "0551698402c2e5b91b9f728b7c86f4b008eca8a9",
      "tree": "d58385e507426870444ae1df7e78b09038cc544c",
      "parents": [
        "54b5655d613f9c699a9d00c8989eebd3ce24c750"
      ],
      "author": {
        "name": "Brian Demers",
        "email": "brian.demers@gmail.com",
        "time": "Mon Dec 16 07:18:20 2024 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Dec 16 12:18:20 2024 +0000"
      },
      "message": "Don\u0027t assume latest release is stable (#14)\n\nThe last perform release may or not be the most recient version, instead it\u0027s the last version that was released, this release could also be an alpha or milestone release\r\n\r\nFixes: MDOAP-66"
    },
    {
      "commit": "54b5655d613f9c699a9d00c8989eebd3ce24c750",
      "tree": "a731c9be99192b30a9695c9a43ff8fc35fd87999",
      "parents": [
        "31de678aae1d3bf02a95cf869f2860cdd5f0d30b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Jun 23 13:09:34 2024 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 23 13:09:34 2024 +0200"
      },
      "message": "[MDOAP-68] Bump org.apache.maven.plugins:maven-plugins from 41 to 42 (#26)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 41 to 42.\r\n- [Release notes](https://github.com/apache/maven-parent/releases)\r\n- [Commits](https://github.com/apache/maven-parent/commits)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: org.apache.maven.plugins:maven-plugins\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "31de678aae1d3bf02a95cf869f2860cdd5f0d30b",
      "tree": "8c5145f763134d658e48c51ca418d402ebf9e9ee",
      "parents": [
        "cf81709adc4e36595173dbf5703e42e41bca90ee"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Apr 02 00:32:39 2024 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 02 00:32:39 2024 +0200"
      },
      "message": "[MDOAP-68] Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (#20)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 39 to 41.\r\n- [Release notes](https://github.com/apache/maven-parent/releases)\r\n- [Commits](https://github.com/apache/maven-parent/commits)\r\n\r\n---\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e\r\nCo-authored-by: Sylwester Lachiewicz \u003cslachiewicz@apache.org\u003e"
    },
    {
      "commit": "cf81709adc4e36595173dbf5703e42e41bca90ee",
      "tree": "768f32d6100d64ce60a15036e7644600ef73c9e2",
      "parents": [
        "de7d4ede47be7ea908d9102add1d6ee792ac3f97"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 04 13:53:40 2024 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Mar 31 15:23:19 2024 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared from 3 to 4\n\nBumps [apache/maven-gh-actions-shared](https://github.com/apache/maven-gh-actions-shared) from 3 to 4.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "de7d4ede47be7ea908d9102add1d6ee792ac3f97",
      "tree": "b4048e496d8c28c828711b8537101c790796261d",
      "parents": [
        "0022dea54f2f1a7dd628434563973d5c3ccd0f8b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Dec 07 13:43:42 2023 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Dec 23 02:00:37 2023 +0100"
      },
      "message": "Bump org.apache.maven.plugins:maven-invoker-plugin from 3.5.1 to 3.6.0\n\nBumps [org.apache.maven.plugins:maven-invoker-plugin](https://github.com/apache/maven-invoker-plugin) from 3.5.1 to 3.6.0.\n- [Release notes](https://github.com/apache/maven-invoker-plugin/releases)\n- [Commits](https://github.com/apache/maven-invoker-plugin/compare/maven-invoker-plugin-3.5.1...maven-invoker-plugin-3.6.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-invoker-plugin\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "0022dea54f2f1a7dd628434563973d5c3ccd0f8b",
      "tree": "35fad32fdbe085ca62d002e4274f03a5e9c1635f",
      "parents": [
        "04a8fb9ec390830783169701c1d60e95b7dd5bfc"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Oct 22 10:16:37 2023 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Dec 23 02:00:21 2023 +0100"
      },
      "message": "Bump l10n-maven-plugin from 1.0-alpha-1 to 1.0.0\n\nBumps [l10n-maven-plugin](https://github.com/mojohaus/l10n-maven-plugin) from 1.0-alpha-1 to 1.0.0.\n- [Release notes](https://github.com/mojohaus/l10n-maven-plugin/releases)\n- [Commits](https://github.com/mojohaus/l10n-maven-plugin/commits/l10n-maven-plugin-1.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:l10n-maven-plugin\n  dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "04a8fb9ec390830783169701c1d60e95b7dd5bfc",
      "tree": "31d28f0cf714f268510b1d1d5508c9150e81eaae",
      "parents": [
        "4ab470e94deaf71c837bd751050f6f0e915a527d"
      ],
      "author": {
        "name": "Tim te Beek",
        "email": "timtebeek@gmail.com",
        "time": "Mon May 15 13:46:08 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 15 11:46:08 2023 +0000"
      },
      "message": "[MNG-6829] Replace StringUtils#isEmpty(String) and #isNotEmpty(String) (#13)\n\n* [MNG-6829] Replace StringUtils#isEmpty(String) and #isNotEmpty(String)\r\n\r\nUse this link to re-run the recipe: https://public.moderne.io/recipes/org.openrewrite.java.migrate.apache.commons.lang.IsNotEmptyToJdk?organizationId\u003dQXBhY2hlIE1hdmVu\r\n\r\nCo-authored-by: Moderne \u003cteam@moderne.io\u003e\r\n\r\n* Apply Spotless\r\n\r\n---------\r\n\r\nCo-authored-by: Moderne \u003cteam@moderne.io\u003e"
    },
    {
      "commit": "4ab470e94deaf71c837bd751050f6f0e915a527d",
      "tree": "ceccf18f35d5f53890b405c5db50eded050fc5da",
      "parents": [
        "d638f78b137610e18e2b7f632f3fec77af845bdb"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 24 12:04:35 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 24 12:04:35 2023 +0200"
      },
      "message": "Auto-link MDOAP Jira"
    },
    {
      "commit": "d638f78b137610e18e2b7f632f3fec77af845bdb",
      "tree": "c6cff7620cd39df1d878f3e1d6f9acc6520583a1",
      "parents": [
        "b5b5c8ffb022aac7446f04b833258fd9f69bfd4e"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:33:46 2023 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:46:19 2023 +0200"
      },
      "message": "[MDOAP-65] Bump jena-core from 2.11.2 to 3.17.0\n"
    },
    {
      "commit": "b5b5c8ffb022aac7446f04b833258fd9f69bfd4e",
      "tree": "f146fb7ba0b04ed86e5a3be424f891b7b921e008",
      "parents": [
        "41ecfc58729dde31cbdf49d4ee716b065c5b51cb"
      ],
      "author": {
        "name": "Tamas Cservenak",
        "email": "tamas@cservenak.net",
        "time": "Sun Apr 17 15:04:58 2022 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:35:30 2023 +0200"
      },
      "message": "[MDOAP-62] Upgrade Maven to 3.2.5\n\nThis closes #2\n"
    },
    {
      "commit": "41ecfc58729dde31cbdf49d4ee716b065c5b51cb",
      "tree": "a1c384b08577364af266d455c0be22ebe92ffcb6",
      "parents": [
        "9eb5fa3c0e115200ecf59f94ed3ad292515f063e"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:29:07 2023 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:35:30 2023 +0200"
      },
      "message": "ignore code style formatting\n"
    },
    {
      "commit": "9eb5fa3c0e115200ecf59f94ed3ad292515f063e",
      "tree": "ebe30738b3386f26ae8391a6f85052e1da7fec85",
      "parents": [
        "3a06997ac87f9d96ca4c032eefc3372d19ca170b"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:05:00 2023 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:27:37 2023 +0200"
      },
      "message": "[MDOAP-63] Formatting\n"
    },
    {
      "commit": "3a06997ac87f9d96ca4c032eefc3372d19ca170b",
      "tree": "b65caf37622e6738d3790c560a4bd64c859c9671",
      "parents": [
        "e79f687d956fa382eab8327ae1420940bac90b02"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:03:32 2023 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:27:37 2023 +0200"
      },
      "message": "[MDOAP-63] Upgrade parent POM to 39\n"
    },
    {
      "commit": "e79f687d956fa382eab8327ae1420940bac90b02",
      "tree": "14afa9421858f4277200c98d8b63c407c763d761",
      "parents": [
        "65cdd31e13321dfe6c39acbe06ade08c9f43edad"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:21:55 2023 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:21:55 2023 +0200"
      },
      "message": "Add Dependabot\n"
    },
    {
      "commit": "65cdd31e13321dfe6c39acbe06ade08c9f43edad",
      "tree": "7dfc0dc445b532fd5a7cf3117bd698a9ad300a49",
      "parents": [
        "e522a789861fc6db270acd6e0aa2e6459cdfd88e"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 22:25:58 2023 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:00:28 2023 +0200"
      },
      "message": "[MDOAP-64] Require Java 8\n"
    },
    {
      "commit": "e522a789861fc6db270acd6e0aa2e6459cdfd88e",
      "tree": "a5389fb61129273e95626e36513768ee39bec023",
      "parents": [
        "9894a9eb1b7c9ce86b5029eb9b67296a3ee9fda8"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 22:49:01 2023 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Apr 08 23:00:28 2023 +0200"
      },
      "message": "Bump maven-gh-actions-shared to v3\n"
    },
    {
      "commit": "9894a9eb1b7c9ce86b5029eb9b67296a3ee9fda8",
      "tree": "e25bf9e788ee0aeb1419b0816aee839003f5c0d8",
      "parents": [
        "608228e80ced47f17c4f8b0753a338291667b6d0"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue Jan 25 10:04:20 2022 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jan 25 10:04:20 2022 +0100"
      },
      "message": "Use Shared GitHub Actions"
    },
    {
      "commit": "608228e80ced47f17c4f8b0753a338291667b6d0",
      "tree": "1947023b2a1b04f3904755166f5f80f902c2fcf2",
      "parents": [
        "d455f06b62a81ad71204e3b900f9bb6ac865d01e"
      ],
      "author": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Wed Oct 13 20:20:13 2021 +0200"
      },
      "committer": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Wed Oct 13 20:20:13 2021 +0200"
      },
      "message": "Fix JavaDoc\n"
    },
    {
      "commit": "d455f06b62a81ad71204e3b900f9bb6ac865d01e",
      "tree": "27e175ab9858d4e828781baf738b30fd8019f59e",
      "parents": [
        "2f2b7995386a89d54d9cfae4e050673daf4727ec"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Jul 25 12:19:08 2021 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Jul 25 12:19:08 2021 +0200"
      },
      "message": "update CI url\n"
    },
    {
      "commit": "2f2b7995386a89d54d9cfae4e050673daf4727ec",
      "tree": "98f3c64c1a810fabc62eec96f608e50e06f60590",
      "parents": [
        "603effaeba562b3dbcea41635a4672958ec6a579"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sat Aug 29 11:32:36 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sat Aug 29 11:32:36 2020 +0200"
      },
      "message": "update ASF CI url\n"
    },
    {
      "commit": "603effaeba562b3dbcea41635a4672958ec6a579",
      "tree": "d4cfa76691489254b0e2271a817656b329d96f6c",
      "parents": [
        "21c3721c64789e136830e1d08dbe643522f205fc"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Fri Aug 28 10:20:19 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Fri Aug 28 10:20:19 2020 +0200"
      },
      "message": "update ASF CI url\n"
    },
    {
      "commit": "21c3721c64789e136830e1d08dbe643522f205fc",
      "tree": "841ab3e39401a4068f404a814cfa8c6054b4bcc7",
      "parents": [
        "52f996439e1871075621941f2bed42111e02611b"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Jan 17 12:47:00 2020 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Apr 26 23:26:51 2020 +0200"
      },
      "message": "Removed csv tags\n\n"
    },
    {
      "commit": "52f996439e1871075621941f2bed42111e02611b",
      "tree": "bab414488b66606ccce363f98838528c8bfb271f",
      "parents": [
        "99752197f782c424b1a0df0ef482272f39511855"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 22:22:36 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 22:22:36 2020 +0200"
      },
      "message": "README improvement\n"
    },
    {
      "commit": "99752197f782c424b1a0df0ef482272f39511855",
      "tree": "861ecd6819fbe1ece18cbeaa34821ba71e74ebd8",
      "parents": [
        "8bac9180e10a0841872fc2322275a1daba9890d8"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 10:28:00 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 10:28:00 2020 +0200"
      },
      "message": "added README\n"
    },
    {
      "commit": "8bac9180e10a0841872fc2322275a1daba9890d8",
      "tree": "92a0ca955d60a4b5c991e39f14d6c3c1238a119e",
      "parents": [
        "48c884bcca5cd538a85494f3e5c051d0da702dde"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Apr 12 15:15:38 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Apr 12 15:15:38 2020 +0200"
      },
      "message": "fixed broken links (MPIR 3)\n"
    },
    {
      "commit": "48c884bcca5cd538a85494f3e5c051d0da702dde",
      "tree": "7bbd85ad4514173a08d53ecc1801b593171fdeae",
      "parents": [
        "17031f9c259186f74030d7918d6e8a63cbe8e5f1"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Tue Apr 07 23:33:16 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Tue Apr 07 23:33:16 2020 +0200"
      },
      "message": "[MDOAP-60] make build Reproducible\n"
    },
    {
      "commit": "17031f9c259186f74030d7918d6e8a63cbe8e5f1",
      "tree": "667dc3d2add6eb6e8939d5ffcf2ef58f406e2e41",
      "parents": [
        "cb004ab1c2bff1d898ecb90e44c6a711da63228d"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Jan 17 04:27:18 2020 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Jan 17 04:27:18 2020 +0100"
      },
      "message": "Update links to Maven Central (https)\n\n"
    },
    {
      "commit": "cb004ab1c2bff1d898ecb90e44c6a711da63228d",
      "tree": "b3a1c052c4b1218226d08ff6e5a50a1351d355ae",
      "parents": [
        "9ca0ee8b1ef723bb4e20603f49fd9536d9a50267"
      ],
      "author": {
        "name": "Karl Heinz Marbaise",
        "email": "khmarbaise@apache.org",
        "time": "Thu Oct 11 19:01:05 2018 +0200"
      },
      "committer": {
        "name": "Karl Heinz Marbaise",
        "email": "khmarbaise@apache.org",
        "time": "Thu Oct 11 19:01:05 2018 +0200"
      },
      "message": "[MDOAP-59] - Upgrade Maven SCM to 1.11.1\n"
    },
    {
      "commit": "9ca0ee8b1ef723bb4e20603f49fd9536d9a50267",
      "tree": "fcd65f0ceb1bd3e4ac617d3076e53fc99f7db914",
      "parents": [
        "d6cbc6ed1f952777b079e40531e157b6ebffe9f6"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Sep 16 20:10:39 2018 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Sep 16 20:10:39 2018 +0200"
      },
      "message": "upgraded parent POM from 32 to 33\n"
    },
    {
      "commit": "d6cbc6ed1f952777b079e40531e157b6ebffe9f6",
      "tree": "a0f2345c9e85e38fe4c7735e0c289bec5290c129",
      "parents": [
        "fb85ea83a193d39043b763b0c0741e5c8b6930a3"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Wed Aug 29 14:53:27 2018 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Wed Aug 29 14:53:27 2018 +0200"
      },
      "message": "[MPOM-205] use sha512 checksums instead of sha1\n"
    }
  ],
  "next": "fb85ea83a193d39043b763b0c0741e5c8b6930a3"
}
