You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ja...@apache.org on 2019/01/18 05:02:19 UTC

[incubator-pinot] branch master updated: Add pinot.root property into pom file to make file location package independent (#3716)

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

jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c4c1c8  Add pinot.root property into pom file to make file location package independent (#3716)
3c4c1c8 is described below

commit 3c4c1c81d675ab887d746ca4654811745e5013c9
Author: Xiaotian (Jackie) Jiang <17...@users.noreply.github.com>
AuthorDate: Thu Jan 17 21:02:15 2019 -0800

    Add pinot.root property into pom file to make file location package independent (#3716)
    
    Fix the issue of license check and checkstyle failure in sub-modules
    Also standardize all pom files
---
 pinot-api/pom.xml               | 10 +++++-----
 pinot-azure-filesystem/pom.xml  | 15 +++++++++------
 pinot-broker/pom.xml            | 11 +++++------
 pinot-common/pom.xml            | 11 +++++------
 pinot-controller/pom.xml        | 12 +++++-------
 pinot-core/pom.xml              | 21 ++++++++++-----------
 pinot-distribution/pom.xml      | 12 ++++--------
 pinot-filesystem/pom.xml        | 16 +++++++++-------
 pinot-hadoop-filesystem/pom.xml | 13 +++++++------
 pinot-hadoop/pom.xml            | 11 +++++------
 pinot-integration-tests/pom.xml | 10 +++++-----
 pinot-minion/pom.xml            | 12 +++++-------
 pinot-perf/pom.xml              | 12 +++++-------
 pinot-server/pom.xml            | 11 +++++------
 pinot-tools/pom.xml             | 11 +++++------
 pinot-transport/pom.xml         | 11 +++++------
 pom.xml                         | 11 +++++------
 17 files changed, 99 insertions(+), 111 deletions(-)

diff --git a/pinot-api/pom.xml b/pinot-api/pom.xml
index d12faec..a1e0e39 100644
--- a/pinot-api/pom.xml
+++ b/pinot-api/pom.xml
@@ -19,8 +19,8 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
@@ -29,10 +29,10 @@
   </parent>
   <artifactId>pinot-api</artifactId>
   <version>0.016</version>
-  <name>pinot-api</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot API</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <build>
     <plugins>
diff --git a/pinot-azure-filesystem/pom.xml b/pinot-azure-filesystem/pom.xml
index 719c738..95cc892 100644
--- a/pinot-azure-filesystem/pom.xml
+++ b/pinot-azure-filesystem/pom.xml
@@ -19,17 +19,21 @@
     under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
-
   <artifactId>pinot-azure-filesystem</artifactId>
+  <version>0.016</version>
+  <name>Pinot Azure Filesystem</name>
+  <url>https://pinot.apache.org/</url>
+  <properties>
+    <pinot.root>${basedir}/..</pinot.root>
+  </properties>
   <dependencies>
     <dependency>
       <groupId>com.microsoft.azure</groupId>
@@ -55,6 +59,5 @@
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-common</artifactId>
     </dependency>
-</dependencies>
-
+  </dependencies>
 </project>
diff --git a/pinot-broker/pom.xml b/pinot-broker/pom.xml
index 1b7b71f..09c4dbd 100644
--- a/pinot-broker/pom.xml
+++ b/pinot-broker/pom.xml
@@ -19,21 +19,20 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <groupId>org.apache.pinot</groupId>
   <artifactId>pinot-broker</artifactId>
   <version>0.016</version>
-  <name>pinot-broker</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Broker</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <build>
     <plugins>
diff --git a/pinot-common/pom.xml b/pinot-common/pom.xml
index 4817adc..0c86875 100644
--- a/pinot-common/pom.xml
+++ b/pinot-common/pom.xml
@@ -19,9 +19,8 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
-         xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
@@ -30,10 +29,10 @@
   </parent>
   <artifactId>pinot-common</artifactId>
   <version>0.016</version>
-  <name>pinot-common</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Common</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <build>
     <!-- Antlr stuff -->
diff --git a/pinot-controller/pom.xml b/pinot-controller/pom.xml
index ff04e68..901f0cb 100644
--- a/pinot-controller/pom.xml
+++ b/pinot-controller/pom.xml
@@ -19,22 +19,20 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-
-  <groupId>org.apache.pinot</groupId>
   <artifactId>pinot-controller</artifactId>
   <version>0.016</version>
-  <name>pinot-controller</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Controller</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <profiles>
     <profile>
diff --git a/pinot-core/pom.xml b/pinot-core/pom.xml
index 2437914..b6de409 100644
--- a/pinot-core/pom.xml
+++ b/pinot-core/pom.xml
@@ -19,14 +19,21 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
+  <artifactId>pinot-core</artifactId>
+  <version>0.016</version>
+  <name>Pinot Core</name>
+  <url>https://pinot.apache.org/</url>
+  <properties>
+    <pinot.root>${basedir}/..</pinot.root>
+  </properties>
   <build>
     <plugins>
       <plugin>
@@ -45,14 +52,6 @@
       </plugin>
     </plugins>
   </build>
-  <artifactId>pinot-core</artifactId>
-  <version>0.016</version>
-  <name>pinot-core</name>
-  <url>http://maven.apache.org</url>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
   <dependencies>
     <dependency>
       <groupId>me.lemire.integercompression</groupId>
@@ -215,5 +214,5 @@
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-math</artifactId>
     </dependency>
-   </dependencies>
+  </dependencies>
 </project>
diff --git a/pinot-distribution/pom.xml b/pinot-distribution/pom.xml
index c30a06e..f5dfa34 100644
--- a/pinot-distribution/pom.xml
+++ b/pinot-distribution/pom.xml
@@ -19,24 +19,20 @@
     under the License.
 
 -->
-<project
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
-  xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <groupId>org.apache.pinot</groupId>
   <artifactId>pinot-distribution</artifactId>
-  <packaging>pom</packaging>
   <version>0.016</version>
-  <name>pinot-distribution</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Distribution</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
     <pinot.root>${basedir}/..</pinot.root>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <maven.build.timestamp.format>yyyy-MM-dd'T'HHmmss'Z'</maven.build.timestamp.format>
   </properties>
   <dependencies>
diff --git a/pinot-filesystem/pom.xml b/pinot-filesystem/pom.xml
index 6c6fe4e..711c62d 100644
--- a/pinot-filesystem/pom.xml
+++ b/pinot-filesystem/pom.xml
@@ -19,19 +19,21 @@
     under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-      <artifactId>pinot</artifactId>
-      <groupId>org.apache.pinot</groupId>
-      <version>0.016</version>
+    <artifactId>pinot</artifactId>
+    <groupId>org.apache.pinot</groupId>
+    <version>0.016</version>
   </parent>
   <artifactId>pinot-filesystem</artifactId>
   <version>0.016</version>
-  <name>pinot-filesystem</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Filesystem</name>
+  <url>https://pinot.apache.org/</url>
+  <properties>
+    <pinot.root>${basedir}/..</pinot.root>
+  </properties>
   <build>
     <plugins>
       <plugin>
diff --git a/pinot-hadoop-filesystem/pom.xml b/pinot-hadoop-filesystem/pom.xml
index d012720..24bc352 100644
--- a/pinot-hadoop-filesystem/pom.xml
+++ b/pinot-hadoop-filesystem/pom.xml
@@ -19,20 +19,21 @@
     under the License.
 
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
-
   <artifactId>pinot-hadoop-filesystem</artifactId>
   <version>0.016</version>
-  <name>pinot-hadoop-filesystem</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Hadoop Filesystem</name>
+  <url>https://pinot.apache.org/</url>
+  <properties>
+    <pinot.root>${basedir}/..</pinot.root>
+  </properties>
   <build>
     <plugins>
       <plugin>
diff --git a/pinot-hadoop/pom.xml b/pinot-hadoop/pom.xml
index d698688..165fd26 100644
--- a/pinot-hadoop/pom.xml
+++ b/pinot-hadoop/pom.xml
@@ -19,21 +19,20 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <groupId>org.apache.pinot</groupId>
   <artifactId>pinot-hadoop</artifactId>
   <version>0.016</version>
-  <name>pinot-hadoop</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Hadoop</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <profiles>
     <profile>
diff --git a/pinot-integration-tests/pom.xml b/pinot-integration-tests/pom.xml
index 2ef582f..eeb8e96 100644
--- a/pinot-integration-tests/pom.xml
+++ b/pinot-integration-tests/pom.xml
@@ -19,8 +19,8 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
@@ -29,10 +29,10 @@
   </parent>
   <artifactId>pinot-integration-tests</artifactId>
   <version>0.016</version>
-  <name>pinot-integration-tests</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Integration Tests</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <build>
     <plugins>
diff --git a/pinot-minion/pom.xml b/pinot-minion/pom.xml
index 7d705db..8aba539 100644
--- a/pinot-minion/pom.xml
+++ b/pinot-minion/pom.xml
@@ -19,22 +19,20 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
-         xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-
   <artifactId>pinot-minion</artifactId>
   <version>0.016</version>
-  <name>pinot-minion</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Minion</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <build>
     <plugins>
diff --git a/pinot-perf/pom.xml b/pinot-perf/pom.xml
index ce0c854..7383731 100644
--- a/pinot-perf/pom.xml
+++ b/pinot-perf/pom.xml
@@ -19,22 +19,20 @@
     under the License.
 
 -->
-<project
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
-  xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <groupId>org.apache.pinot</groupId>
   <artifactId>pinot-perf</artifactId>
   <version>0.016</version>
-  <name>pinot-perf</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Perf</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <dependencies>
     <dependency>
diff --git a/pinot-server/pom.xml b/pinot-server/pom.xml
index ed69292..295a528 100644
--- a/pinot-server/pom.xml
+++ b/pinot-server/pom.xml
@@ -19,9 +19,8 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
-         xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
@@ -30,10 +29,10 @@
   </parent>
   <artifactId>pinot-server</artifactId>
   <version>0.016</version>
-  <name>pinot-server</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Server</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <profiles>
     <profile>
diff --git a/pinot-tools/pom.xml b/pinot-tools/pom.xml
index 4893fb4..89238bf 100644
--- a/pinot-tools/pom.xml
+++ b/pinot-tools/pom.xml
@@ -19,21 +19,20 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <groupId>org.apache.pinot</groupId>
   <artifactId>pinot-tools</artifactId>
   <version>0.016</version>
-  <name>pinot-tools</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Tools</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <dependencies>
     <dependency>
diff --git a/pinot-transport/pom.xml b/pinot-transport/pom.xml
index 0c132a0..8a9faca 100644
--- a/pinot-transport/pom.xml
+++ b/pinot-transport/pom.xml
@@ -19,21 +19,20 @@
     under the License.
 
 -->
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>pinot</artifactId>
     <groupId>org.apache.pinot</groupId>
     <version>0.016</version>
   </parent>
-  <groupId>org.apache.pinot</groupId>
   <artifactId>pinot-transport</artifactId>
   <version>0.016</version>
-  <name>pinot-transport</name>
-  <url>http://maven.apache.org</url>
+  <name>Pinot Transport</name>
+  <url>https://pinot.apache.org/</url>
   <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <pinot.root>${basedir}/..</pinot.root>
   </properties>
   <dependencies>
     <dependency>
diff --git a/pom.xml b/pom.xml
index 696aa75..07ac631 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,10 +26,9 @@
   <artifactId>pinot</artifactId>
   <version>0.016</version>
   <packaging>pom</packaging>
-
   <name>Pinot</name>
   <description>A realtime distributed OLAP datastore</description>
-  <url>https://pinot.apache.org</url>
+  <url>https://pinot.apache.org/</url>
 
   <modules>
     <module>pinot-broker</module>
@@ -93,13 +92,13 @@
   <inceptionYear>2014</inceptionYear>
 
   <properties>
+    <pinot.root>${basedir}</pinot.root>
     <build.profile.id>dev</build.profile.id>
     <jdk.version>1.8</jdk.version>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <!-- Only unit tests are run by default. -->
     <skip.integration.tests>true</skip.integration.tests>
     <skip.unit.tests>false</skip.unit.tests>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <!-- Configuration for unit/integration tests section 1 of 3 (properties) STARTS HERE.
       Property for running integration tests with profiles
       at the command line, where you do:
@@ -925,8 +924,8 @@
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>3.0.0</version>
         <configuration>
-          <configLocation>config/checkstyle.xml</configLocation>
-          <propertyExpansion>config_loc=config</propertyExpansion>
+          <configLocation>${pinot.root}/config/checkstyle.xml</configLocation>
+          <propertyExpansion>config_loc=${pinot.root}/config</propertyExpansion>
           <consoleOutput>true</consoleOutput>
         </configuration>
         <!--Uncomment to enable style check during build-->
@@ -1025,7 +1024,7 @@
         <artifactId>license-maven-plugin</artifactId>
         <version>2.8</version>
         <configuration>
-          <header>HEADER</header>
+          <header>${pinot.root}/HEADER</header>
           <excludes>
             <!-- Text and log files -->
             <exclude>**/*.txt</exclude>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org