You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2021/01/07 06:49:30 UTC

[incubator-sedona] branch master updated: Fix the failed scaladoc compilation on Scala 2.11

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new da4d908  Fix the failed scaladoc compilation on Scala 2.11
da4d908 is described below

commit da4d9083a96bf9022a0f43eb884fb8a85a026b92
Author: Jia Yu <ji...@apache.org>
AuthorDate: Wed Jan 6 22:49:18 2021 -0800

    Fix the failed scaladoc compilation on Scala 2.11
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e148990..9d17054 100644
--- a/pom.xml
+++ b/pom.xml
@@ -286,7 +286,7 @@
                             </goals>
                             <configuration>
                                 <args>
-                                    <arg>-no-java-comments</arg>
+                                    <arg>${scaladoc.arg}</arg>
                                 </args>
                             </configuration>
                         </execution>
@@ -488,6 +488,7 @@
             <properties>
                 <scala.version>2.12.8</scala.version>
                 <scala.compat.version>2.12</scala.compat.version>
+                <scaladoc.arg>-no-java-comments</scaladoc.arg>
             </properties>
         </profile>
         <profile>
@@ -502,6 +503,7 @@
             <properties>
                 <scala.version>2.11.8</scala.version>
                 <scala.compat.version>2.11</scala.compat.version>
+                <scaladoc.arg></scaladoc.arg>
             </properties>
         </profile>
     </profiles>