Repository: calcite Updated Branches: refs/heads/master 0db06f780 -> 9721283bd
[CALCITE-2380] Javadoc generation failure in Elasticsearch2 adapter (Andrei Sereda) The problem is that elasticsearch5 and elasticsearch2 namespaces overlap when javadoc tries to generate both simultaneously. Solve by excluding elasticsearch2 package. Part of apache/calcite#741 Project: http://git-wip-us.apache.org/repos/asf/calcite/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/9721283b Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/9721283b Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/9721283b Branch: refs/heads/master Commit: 9721283bd0ce46a337f51a3691585cca8003e399 Parents: 0db06f7 Author: Andrei Sereda <[email protected]> Authored: Sun Jun 24 18:59:26 2018 -0400 Committer: Julian Hyde <[email protected]> Committed: Mon Jun 25 19:18:23 2018 -0700 ---------------------------------------------------------------------- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite/blob/9721283b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 67796cb..7b76080 100644 --- a/pom.xml +++ b/pom.xml @@ -715,7 +715,7 @@ limitations under the License. <links> <link>https://docs.oracle.com/javase/9/docs/api/</link> </links> - <excludePackageNames>org.apache.calcite.benchmarks.generated,org.apache.calcite.sql.parser.ddl,org.apache.calcite.sql.parser.impl,org.apache.calcite.sql.parser.parserextensiontesting,org.apache.calcite.piglet.parser,org.openjdk.jmh</excludePackageNames> + <excludePackageNames>org.apache.calcite.benchmarks.generated,org.apache.calcite.sql.parser.ddl,org.apache.calcite.sql.parser.impl,org.apache.calcite.sql.parser.parserextensiontesting,org.apache.calcite.piglet.parser,org.openjdk.jmh,org.apache.calcite.adapter.elasticsearch2</excludePackageNames> <show>private</show> </configuration> </plugin> @@ -955,7 +955,7 @@ limitations under the License. <links> <link>https://docs.oracle.com/javase/8/docs/api/</link> </links> - <excludePackageNames>org.apache.calcite.benchmarks.generated,org.apache.calcite.sql.parser.ddl,org.apache.calcite.sql.parser.impl,org.apache.calcite.sql.parser.parserextensiontesting,org.apache.calcite.piglet.parser,org.openjdk.jmh</excludePackageNames> + <excludePackageNames>org.apache.calcite.benchmarks.generated,org.apache.calcite.sql.parser.ddl,org.apache.calcite.sql.parser.impl,org.apache.calcite.sql.parser.parserextensiontesting,org.apache.calcite.piglet.parser,org.openjdk.jmh,org.apache.calcite.adapter.elasticsearch2</excludePackageNames> <notimestamp>true</notimestamp> <windowtitle>Apache Calcite API</windowtitle> </configuration>
