-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for the public release [skip ci] #5069
Conversation
To fix issue NVIDIA#5050 1, Add JAVA_HOME for maven opt `-P source-javadoc` 2, Change to use maven opt `-P release311` instead of `-P release301` 3, Add configuration `<detectOfflineLinks>` for maven-javadoc-plugin: Not detecting the links for all modules defined in the project: https://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-no-fork-mojo.html#detectOfflineLinks To [ERROR] `The specified file '/home/jenkins/agent/workspace/jenkins-tim-rapids-release-11/dist/target/rapids-4-spark_2.12-22.04.0.jar' not exists` Signed-off-by: Tim Liu <timl@nvidia.com>
build |
Add [skip ci] as this change only works on release builds/jobs |
build |
pom.xml
Outdated
@@ -793,6 +793,7 @@ | |||
</executions> | |||
<configuration> | |||
<doclint>none</doclint> | |||
<detectOfflineLinks>false</detectOfflineLinks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT:
It's in parent pom, this will effect all the sub-modules.
Currently only the common module and the dist module have problem.
Can we just update these 2 modules?
is the javadoc link error because the integration tests don't generate javadoc then? |
…ned in the project Signed-off-by: Tim Liu <timl@nvidia.com>
6027a69
to
ec8be51
Compare
|
build |
@@ -344,6 +344,23 @@ | |||
</execution> | |||
</executions> | |||
</plugin> | |||
<plugin> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a copy of the parent pom.xml file https://github.com/NVIDIA/spark-rapids/blob/branch-22.04/pom.xml#L782-L797,
Changed nothing but overwrite config: <detectOfflineLinks>false</detectOfflineLinks>
To fix issue #5050
1, Add JAVA_HOME for maven opt
-P source-javadoc
2, Change to use maven opt
-P release311
instead of-P release301
3, Add configuration
<detectOfflineLinks>
for maven-javadoc-plugin:Signed-off-by: Tim Liu timl@nvidia.com