This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 4b506f4cb9 [KYUUBI #6820] Explicitly disable attach-scaladocs for pure
Java modules
4b506f4cb9 is described below
commit 4b506f4cb92f8102f0d0ca9908869cdedbeb07e5
Author: Cheng Pan <[email protected]>
AuthorDate: Fri Nov 22 17:12:00 2024 +0800
[KYUUBI #6820] Explicitly disable attach-scaladocs for pure Java modules
# :mag: Description
```
export JAVA_HOME=/path/of/openjdk-17
build/mvn clean install -DskipTests -Dmaven.scaladoc.skip=false
```
```
[INFO] --- scala-maven-plugin:4.9.2:doc-jar (attach-scaladocs)
kyuubi-server-plugin ---
[INFO] compiler plugin:
BasicArtifact(com.github.ghik,silencer-plugin_2.12.20,1.7.19,null)
error: fatal error: object scala in compiler mirror not found.
```
## Types of changes :bookmark:
- [x] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
## Test Plan ๐งช
Successfully run the build command
```
export JAVA_HOME=/path/of/openjdk-17
build/mvn clean install -DskipTests -Dmaven.scaladoc.skip=false
```
---
# Checklist ๐
- [x] This patch was not authored or co-authored using [Generative
Tooling](https://www.apache.org/legal/generative-tooling.html)
**Be nice. Be informative.**
Closes #6820 from pan3793/scaladoc.
Closes #6820
f5cee3429 [Cheng Pan] Explicitly disable attach-scaladocs for pure Java
modules
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
extensions/flink/kyuubi-flink-token-provider/pom.xml | 9 ++++++---
extensions/server/kyuubi-server-plugin/pom.xml | 9 ++++++---
2 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/extensions/flink/kyuubi-flink-token-provider/pom.xml
b/extensions/flink/kyuubi-flink-token-provider/pom.xml
index f7c377cced..0314a4333e 100644
--- a/extensions/flink/kyuubi-flink-token-provider/pom.xml
+++ b/extensions/flink/kyuubi-flink-token-provider/pom.xml
@@ -69,9 +69,12 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
+ <executions>
+ <execution>
+ <id>attach-scaladocs</id>
+ <phase>none</phase>
+ </execution>
+ </executions>
</plugin>
</plugins>
</build>
diff --git a/extensions/server/kyuubi-server-plugin/pom.xml
b/extensions/server/kyuubi-server-plugin/pom.xml
index 22e433d7cd..4095762bb7 100644
--- a/extensions/server/kyuubi-server-plugin/pom.xml
+++ b/extensions/server/kyuubi-server-plugin/pom.xml
@@ -35,9 +35,12 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
+ <executions>
+ <execution>
+ <id>attach-scaladocs</id>
+ <phase>none</phase>
+ </execution>
+ </executions>
</plugin>
</plugins>
</build>