This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/karaf-minho.git
The following commit(s) were added to refs/heads/main by this push:
new 913f259 Skip minho-jmx module from the javadoc aggregation
913f259 is described below
commit 913f259ba52dc1010b0d9330f36a636b310bbb9b
Author: Jean-Baptiste Onofré <[email protected]>
AuthorDate: Wed Jan 4 11:03:37 2023 +0100
Skip minho-jmx module from the javadoc aggregation
---
pom.xml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 3ee16df..f4e2194 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,6 +39,8 @@
<junit.version>5.9.1</junit.version>
<slf4j.version>1.7.36</slf4j.version>
<project.build.outputTimestamp>1</project.build.outputTimestamp>
+ <maven.compiler.source>11</maven.compiler.source>
+ <maven.compiler.target>11</maven.compiler.target>
</properties>
<scm>
@@ -114,10 +116,9 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
+ <artifactId>maven-javadoc-plugin</artifactId>
<configuration>
- <source>11</source>
- <target>11</target>
+ <skippedModules>minho-jmx</skippedModules>
</configuration>
</plugin>
<plugin>