You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/03/11 13:16:52 UTC

[tinkerpop] 14/26: TINKERPOP-2076 Re-enabled javadoc for gremlin-groovy

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

spmallette pushed a commit to branch TINKERPOP-2076
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit acbd62d67938c548446bbbbd7eb874888f645f56
Author: stephen <sp...@gmail.com>
AuthorDate: Tue Nov 12 10:16:13 2019 -0500

    TINKERPOP-2076 Re-enabled javadoc for gremlin-groovy
---
 gremlin-groovy/pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gremlin-groovy/pom.xml b/gremlin-groovy/pom.xml
index b890a99..81e6be0 100644
--- a/gremlin-groovy/pom.xml
+++ b/gremlin-groovy/pom.xml
@@ -161,7 +161,12 @@ limitations under the License.
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
-                    <skip>true</skip>
+                    <!--
+                    need to override source path as we don't seem to get the groovy-stubs automatically. this worked
+                    under java 8 but errors under java 11 due to missing files on the path. i guess java 8 was more
+                    forgiving.
+                    -->
+                    <sourcepath>${pom.basedir}/src/main/java:${project.build.directory}/generated-sources/annotations:${project.build.directory}/generated-sources/groovy-stubs/main</sourcepath>
                 </configuration>
             </plugin>
         </plugins>