This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openwebbeans.git
The following commit(s) were added to refs/heads/main by this push:
new 67914d013 OWB-1458 fix javadoc plugin after parent update
67914d013 is described below
commit 67914d013d54cf4370491f7fe8b1783b3d9cf369
Author: Mark Struberg <[email protected]>
AuthorDate: Mon Apr 27 13:52:40 2026 +0200
OWB-1458 fix javadoc plugin after parent update
The new maven-javadoc-plugin does not have a <source> but a <release>
attribute.
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 0e6a69d03..6ce54db6a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -669,7 +669,7 @@
<version>${maven-javadoc.version}</version>
<configuration>
<quiet>true</quiet>
- <source>${maven.compiler.source}</source>
+ <release>${maven.compiler.source}</release>
<doclint>none</doclint>
</configuration>
</plugin>