You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ol...@apache.org on 2016/12/12 16:00:22 UTC

[1/2] ambari git commit: AMBARI-19160. Add ReviewBoard config file (Attila Doroszlai via oleewere)

Repository: ambari
Updated Branches:
  refs/heads/branch-2.5 0c89587a9 -> 87a8b00ac


AMBARI-19160. Add ReviewBoard config file (Attila Doroszlai via oleewere)

Change-Id: Ifb231bc52531ac95367be7e30834b260b5ff5fc1


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/87a8b00a
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/87a8b00a
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/87a8b00a

Branch: refs/heads/branch-2.5
Commit: 87a8b00acf46ec5be2640dda0bede19d16d9788d
Parents: c2a4fa6
Author: Attila Doroszlai <ad...@hortonworks.com>
Authored: Mon Dec 12 16:56:48 2016 +0100
Committer: oleewere <ol...@gmail.com>
Committed: Mon Dec 12 16:59:53 2016 +0100

----------------------------------------------------------------------
 .reviewboardrc | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/87a8b00a/.reviewboardrc
----------------------------------------------------------------------
diff --git a/.reviewboardrc b/.reviewboardrc
new file mode 100644
index 0000000..162eee7
--- /dev/null
+++ b/.reviewboardrc
@@ -0,0 +1,19 @@
+# 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
+
+REVIEWBOARD_URL = 'https://reviews.apache.org'
+REPOSITORY = 'ambari'
+
+# Default value for the request's Reviewers > Groups field
+TARGET_GROUPS = 'Ambari'


[2/2] ambari git commit: AMBARI-19158. Plugin configuration ignored when directly running checkstyle goals (Attila Doroszlai via oleewere)

Posted by ol...@apache.org.
AMBARI-19158. Plugin configuration ignored when directly running checkstyle goals (Attila Doroszlai via oleewere)

Change-Id: Iaf65354eec0adfcf9a2dc7bb0cdb1356f81099b9


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/c2a4fa64
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c2a4fa64
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c2a4fa64

Branch: refs/heads/branch-2.5
Commit: c2a4fa64db2b148b5a174fb936120a3239a6271c
Parents: 0c89587
Author: Attila Doroszlai <ad...@hortonworks.com>
Authored: Mon Dec 12 16:55:24 2016 +0100
Committer: oleewere <ol...@gmail.com>
Committed: Mon Dec 12 16:59:53 2016 +0100

----------------------------------------------------------------------
 ambari-project/pom.xml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/c2a4fa64/ambari-project/pom.xml
----------------------------------------------------------------------
diff --git a/ambari-project/pom.xml b/ambari-project/pom.xml
index 52c9992..7ae58f5 100644
--- a/ambari-project/pom.xml
+++ b/ambari-project/pom.xml
@@ -497,18 +497,18 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-checkstyle-plugin</artifactId>
           <version>2.17</version>
+          <configuration>
+            <configLocation>${project.basedir}/checkstyle.xml</configLocation>
+            <encoding>UTF-8</encoding>
+            <consoleOutput>true</consoleOutput>
+            <failsOnError>true</failsOnError>
+            <linkXRef>false</linkXRef>
+            <skip>${checkstyle.skip}</skip>
+          </configuration>
           <executions>
             <execution>
               <id>checkstyle</id>
               <phase>test</phase>
-              <configuration>
-                <configLocation>${project.basedir}/checkstyle.xml</configLocation>
-                <encoding>UTF-8</encoding>
-                <consoleOutput>true</consoleOutput>
-                <failsOnError>true</failsOnError>
-                <linkXRef>false</linkXRef>
-                <skip>${checkstyle.skip}</skip>
-              </configuration>
               <goals>
                 <goal>check</goal>
               </goals>