Repository: hive Updated Branches: refs/heads/master 966b83e3b -> c7fe4ef4d
HIVE-19969: Dependency order (dirlist) assessment fails in yetus run (Adam Szita, reviewed by Peter Vary) Change-Id: I959c9f57a41e83367243b1217a3a375fe8256c12 Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/c7fe4ef4 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/c7fe4ef4 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/c7fe4ef4 Branch: refs/heads/master Commit: c7fe4ef4dd157b2155d521e56d5552fff3c54321 Parents: 966b83e Author: Adam Szita <[email protected]> Authored: Wed Jun 27 11:18:56 2018 +0200 Committer: Adam Szita <[email protected]> Committed: Wed Jun 27 11:18:56 2018 +0200 ---------------------------------------------------------------------- standalone-metastore/pom.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/c7fe4ef4/standalone-metastore/pom.xml ---------------------------------------------------------------------- diff --git a/standalone-metastore/pom.xml b/standalone-metastore/pom.xml index 1e77285..67d8fb4 100644 --- a/standalone-metastore/pom.xml +++ b/standalone-metastore/pom.xml @@ -818,17 +818,17 @@ <goals> <goal>exec</goal> </goals> + <configuration> + <executable>java</executable> + <arguments> + <argument>-classpath</argument> + <classpath/> + <argument>org.apache.hadoop.hive.metastore.conf.ConfTemplatePrinter</argument> + <argument>${project.build.directory}/generated-sources/conf/metastore-site.xml.template</argument> + </arguments> + </configuration> </execution> </executions> - <configuration> - <executable>java</executable> - <arguments> - <argument>-classpath</argument> - <classpath/> - <argument>org.apache.hadoop.hive.metastore.conf.ConfTemplatePrinter</argument> - <argument>${project.build.directory}/generated-sources/conf/metastore-site.xml.template</argument> - </arguments> - </configuration> </plugin> <plugin> <groupId>org.datanucleus</groupId>
