This is an automated email from the ASF dual-hosted git repository.
chrisdutz pushed a commit to branch releases/code-generation/1.9
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git
The following commit(s) were added to refs/heads/releases/code-generation/1.9
by this push:
new b775941 chore: Made the maven-compiler-plugin use the java.version
property value instead of a hard-coded 8
b775941 is described below
commit b77594169e5c995ca6782b21b777ea10b03ca3bc
Author: Christofer Dutz <[email protected]>
AuthorDate: Mon Jul 27 14:48:29 2026 +0200
chore: Made the maven-compiler-plugin use the java.version property value
instead of a hard-coded 8
---
code-generation/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code-generation/pom.xml b/code-generation/pom.xml
index ede629e..0e06af0 100644
--- a/code-generation/pom.xml
+++ b/code-generation/pom.xml
@@ -172,7 +172,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<configuration>
- <source>8</source>
+ <source>${java.version}</source>
</configuration>
</plugin>
<plugin>