You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2021/02/05 07:59:11 UTC

[phoenix] branch 5.1 updated: PHOENIX-6114 Create shaded phoenix-pherf and remove lib dir from assembly (addendum: fix apache-rat check)

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

stoty pushed a commit to branch 5.1
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/5.1 by this push:
     new 611196f  PHOENIX-6114 Create shaded phoenix-pherf and remove lib dir from assembly (addendum: fix apache-rat check)
611196f is described below

commit 611196fb532fb0687b20508edbcc98ca500057cc
Author: Istvan Toth <st...@apache.org>
AuthorDate: Fri Feb 5 08:13:56 2021 +0100

    PHOENIX-6114 Create shaded phoenix-pherf and remove lib dir from assembly (addendum: fix apache-rat check)
---
 phoenix-pherf/README.md | 17 +++++++++++++++++
 phoenix-pherf/pom.xml   | 12 +-----------
 2 files changed, 18 insertions(+), 11 deletions(-)

diff --git a/phoenix-pherf/README.md b/phoenix-pherf/README.md
index c813f74..ecc8434 100644
--- a/phoenix-pherf/README.md
+++ b/phoenix-pherf/README.md
@@ -1,3 +1,20 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
 Pherf is a performance test framework that exercises HBase through Apache Phoenix, a SQL layer interface.
 
 ## Build 
diff --git a/phoenix-pherf/pom.xml b/phoenix-pherf/pom.xml
index bedc857..a1454e3 100644
--- a/phoenix-pherf/pom.xml
+++ b/phoenix-pherf/pom.xml
@@ -291,6 +291,7 @@
             <configuration>
               <promoteTransitiveDependencies>false</promoteTransitiveDependencies>
               <shadeTestJar>false</shadeTestJar>
+              <dependencyReducedPomLocation>${basedir}/target/pom.xml</dependencyReducedPomLocation>
               <transformers>
                 <transformer
                   implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
@@ -339,17 +340,6 @@
           </execution>
         </executions>
       </plugin>
-
-      <plugin>
-        <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-        <configuration>
-          <excludes>
-            <exclude>*/RESULTS/**</exclude>
-            <exclude>README.md</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
     </plugins>
   </build>
 </project>