[
https://issues.apache.org/jira/browse/HIVE-20097?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16542316#comment-16542316
]
Alexander Kolbasov commented on HIVE-20097:
-------------------------------------------
Patch 6 fixes rat violations - the only change is the addition of this block to
{{standalone-metastore/pom.xml}}:
{code}
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>0.10</version>
<configuration>
<excludes>
<exclude>binary-package-licenses/**</exclude>
<exclude>DEV-README</exclude>
<exclude>**/src/main/sql/**</exclude>
<exclude>**/README.md</exclude>
<exclude>**/*.iml</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/*.log</exclude>
<exclude>**/*.arcconfig</exclude>
<exclude>**/package-info.java</exclude>
<exclude>**/*.properties</exclude>
<exclude>**/*.q</exclude>
<exclude>**/*.q.out</exclude>
<exclude>**/*.xml</exclude>
<exclude>**/gen/**</exclude>
<exclude>**/patchprocess/**</exclude>
<exclude>**/metastore_db/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
{code}
The patch is merged to
{code}
* commit 57dd30441a708f9fe653aea1c54df678ed459c34 (origin/master, origin/HEAD)
| Author: Aihua Xu <[email protected]>
| Date: Fri Jun 29 14:40:43 2018 -0700
|
| HIVE-20037: Print root cause exception's toString() rather than
getMessage() (Aihua Xu, reviewed by Sahil Takiar)
{code}
> Convert standalone-metastore to a submodule
> -------------------------------------------
>
> Key: HIVE-20097
> URL: https://issues.apache.org/jira/browse/HIVE-20097
> Project: Hive
> Issue Type: Sub-task
> Components: Hive, Metastore, Standalone Metastore
> Affects Versions: 3.1.0, 4.0.0
> Reporter: Alexander Kolbasov
> Assignee: Alexander Kolbasov
> Priority: Major
> Attachments: HIVE-20097.01.patch, HIVE-20097.02.patch,
> HIVE-20097.03.patch, HIVE-20097.04.patch, HIVE-20097.05.patch,
> HIVE-20097.06.patch
>
>
> This is a subtask to stage HIVE-17751 changes into several smaller phases.
> The first part is moving existing code in hive-standalone-metastore to a
> sub-module.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)