This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git
The following commit(s) were added to refs/heads/main by this push:
new 28c02bdf Bump org.jsonschema2pojo:jsonschema2pojo-maven-plugin
28c02bdf is described below
commit 28c02bdf7f2cf6e0409675061b0a082c8fe7aa20
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue May 26 15:20:08 2026 +0000
Bump org.jsonschema2pojo:jsonschema2pojo-maven-plugin
Bumps
[org.jsonschema2pojo:jsonschema2pojo-maven-plugin](https://github.com/joelittlejohn/jsonschema2pojo)
from 1.1.2 to 1.3.3.
- [Release
notes](https://github.com/joelittlejohn/jsonschema2pojo/releases)
-
[Changelog](https://github.com/joelittlejohn/jsonschema2pojo/blob/master/CHANGELOG.md)
-
[Commits](https://github.com/joelittlejohn/jsonschema2pojo/compare/jsonschema2pojo-1.1.2...jsonschema2pojo-1.3.3)
---
updated-dependencies:
- dependency-name: org.jsonschema2pojo:jsonschema2pojo-maven-plugin
dependency-version: 1.3.3
dependency-type: direct:development
update-type: version-update:semver-minor
...
Starting from 1.2.0, the targetVersion must be specified to have the
@Genrated correct package used
Signed-off-by: dependabot[bot] <[email protected]>
---
mapstruct/pom.xml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/mapstruct/pom.xml b/mapstruct/pom.xml
index 763781f8..59b8996f 100644
--- a/mapstruct/pom.xml
+++ b/mapstruct/pom.xml
@@ -128,7 +128,7 @@
<plugin>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-maven-plugin</artifactId>
- <version>1.1.2</version>
+ <version>1.3.3</version>
<executions>
<execution>
<goals>
@@ -140,6 +140,7 @@
<sourceDirectory>${basedir}/src/main/resources/documents</sourceDirectory>
<targetPackage>org.apache.camel.example.model</targetPackage>
<sourceType>json</sourceType>
+ <targetVersion>${jdk.version}</targetVersion>
</configuration>
</plugin>
</plugins>