hbase git commit: HBASE-18798 Remove the unused methods in RegionServerObserver

2017-09-17 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master 5c12e424e -> 190a660d1


HBASE-18798 Remove the unused methods in RegionServerObserver


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

Branch: refs/heads/master
Commit: 190a660d17c2a2cca6128edb33254e7ff851bbb3
Parents: 5c12e42
Author: Chia-Ping Tsai 
Authored: Fri Sep 15 19:00:43 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Mon Sep 18 09:44:57 2017 +0800

--
 .../hbase/coprocessor/RegionServerObserver.java | 62 --
 .../RegionServerCoprocessorHost.java| 69 
 .../hbase/security/access/AccessController.java | 27 
 .../hbase/namespace/TestNamespaceAuditor.java   | 13 
 .../security/access/TestAccessController.java   | 25 ---
 .../access/TestWithDisabledAuthorization.java   | 15 -
 6 files changed, 211 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/190a660d/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
index 9fce32a..4e31d19 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
@@ -24,12 +24,9 @@ import java.util.List;
 import org.apache.hadoop.hbase.CellScanner;
 import org.apache.hadoop.hbase.Coprocessor;
 import org.apache.hadoop.hbase.HBaseInterfaceAudience;
-import org.apache.hadoop.hbase.MetaMutationAnnotation;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.yetus.audience.InterfaceStability;
-import org.apache.hadoop.hbase.client.Mutation;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.WALEntry;
-import org.apache.hadoop.hbase.regionserver.Region;
 import org.apache.hadoop.hbase.replication.ReplicationEndpoint;
 
 /**
@@ -68,65 +65,6 @@ public interface RegionServerObserver extends Coprocessor {
 final ObserverContext ctx) throws 
IOException {}
 
   /**
-   * Called before the regions merge.
-   * Call {@link org.apache.hadoop.hbase.coprocessor.ObserverContext#bypass()} 
to skip the merge.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void preMerge(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB) throws IOException {}
-
-  /**
-   * called after the regions merge.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void postMerge(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB, final Region mergedRegion) 
throws IOException {}
-
-  /**
-   * This will be called before PONR step as part of regions merge 
transaction. Calling
-   * {@link org.apache.hadoop.hbase.coprocessor.ObserverContext#bypass()} 
rollback the merge
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   * @param metaEntries mutations to execute on hbase:meta atomically with 
regions merge updates.
-   *Any puts or deletes to execute on hbase:meta can be added to the 
mutations.
-   */
-  default void preMergeCommit(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB,
-  @MetaMutationAnnotation List metaEntries) throws IOException {}
-
-  /**
-   * This will be called after PONR step as part of regions merge transaction.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void postMergeCommit(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB, final Region mergedRegion) 
throws IOException {}
-
-  /**
-   * This will be called before the roll back of the regions merge.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void preRollBackMerge(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB) throws IOException {}
-

hbase git commit: HBASE-18798 Remove the unused methods in RegionServerObserver

2017-09-17 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 a1b6dd22e -> 2aa10cb65


HBASE-18798 Remove the unused methods in RegionServerObserver


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

Branch: refs/heads/branch-2
Commit: 2aa10cb65100c48ed6a1c3cc29058d4aac219cc2
Parents: a1b6dd2
Author: Chia-Ping Tsai 
Authored: Fri Sep 15 19:00:43 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Mon Sep 18 09:49:38 2017 +0800

--
 .../hbase/coprocessor/RegionServerObserver.java | 62 --
 .../RegionServerCoprocessorHost.java| 69 
 .../hbase/security/access/AccessController.java | 27 
 .../hbase/namespace/TestNamespaceAuditor.java   | 13 
 .../security/access/TestAccessController.java   | 25 ---
 .../access/TestWithDisabledAuthorization.java   | 15 -
 6 files changed, 211 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2aa10cb6/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
index 9fce32a..4e31d19 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
@@ -24,12 +24,9 @@ import java.util.List;
 import org.apache.hadoop.hbase.CellScanner;
 import org.apache.hadoop.hbase.Coprocessor;
 import org.apache.hadoop.hbase.HBaseInterfaceAudience;
-import org.apache.hadoop.hbase.MetaMutationAnnotation;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.yetus.audience.InterfaceStability;
-import org.apache.hadoop.hbase.client.Mutation;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.WALEntry;
-import org.apache.hadoop.hbase.regionserver.Region;
 import org.apache.hadoop.hbase.replication.ReplicationEndpoint;
 
 /**
@@ -68,65 +65,6 @@ public interface RegionServerObserver extends Coprocessor {
 final ObserverContext ctx) throws 
IOException {}
 
   /**
-   * Called before the regions merge.
-   * Call {@link org.apache.hadoop.hbase.coprocessor.ObserverContext#bypass()} 
to skip the merge.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void preMerge(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB) throws IOException {}
-
-  /**
-   * called after the regions merge.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void postMerge(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB, final Region mergedRegion) 
throws IOException {}
-
-  /**
-   * This will be called before PONR step as part of regions merge 
transaction. Calling
-   * {@link org.apache.hadoop.hbase.coprocessor.ObserverContext#bypass()} 
rollback the merge
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   * @param metaEntries mutations to execute on hbase:meta atomically with 
regions merge updates.
-   *Any puts or deletes to execute on hbase:meta can be added to the 
mutations.
-   */
-  default void preMergeCommit(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB,
-  @MetaMutationAnnotation List metaEntries) throws IOException {}
-
-  /**
-   * This will be called after PONR step as part of regions merge transaction.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void postMergeCommit(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB, final Region mergedRegion) 
throws IOException {}
-
-  /**
-   * This will be called before the roll back of the regions merge.
-   * @param ctx the environment to interact with the framework and region 
server.
-   * @param regionA region being merged.
-   * @param regionB region being merged.
-   */
-  default void preRollBackMerge(final 
ObserverContext ctx,
-  final Region regionA, final Region regionB) throws IOException 

[5/6] hbase-site git commit: Published site at .

2017-09-17 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
index 8995f48..e211a8c 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Project 
Information
 
@@ -167,7 +167,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html
index 86a7ddc..50bd318 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Project Summary
 
@@ -163,7 +163,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html
index 1287801..a7f5e11 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Source Code 
Management
 
@@ -134,7 +134,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html
index d610110..6dfa142 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Archetype builder  Project Team
 
@@ -529,7 +529,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html
index a47d399..7c3fb89 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Exemplar for hbase-client archetype  
Checkstyle Results
 
@@ -150,7 +150,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All 

[6/6] hbase-site git commit: Published site at .

2017-09-17 Thread git-site-role
Published site at .


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

Branch: refs/heads/asf-site
Commit: edf91939ff90257b2a38784b500bf3296e9c080b
Parents: c2ba0c8
Author: jenkins 
Authored: Sun Sep 17 15:13:09 2017 +
Committer: jenkins 
Committed: Sun Sep 17 15:13:09 2017 +

--
 acid-semantics.html |   4 +-
 apache_hbase_reference_guide.pdf|   4 +-
 book.html   |   2 +-
 bulk-loads.html |   4 +-
 checkstyle-aggregate.html   |   4 +-
 coc.html|   4 +-
 cygwin.html |   4 +-
 dependencies.html   |   4 +-
 dependency-convergence.html |   4 +-
 dependency-info.html|   4 +-
 dependency-management.html  |  24 ++-
 devapidocs/constant-values.html |   4 +-
 .../org/apache/hadoop/hbase/Version.html|   4 +-
 export_control.html |   4 +-
 hbase-annotations/dependencies.html |   4 +-
 hbase-annotations/dependency-convergence.html   |   4 +-
 hbase-annotations/dependency-info.html  |   4 +-
 hbase-annotations/dependency-management.html|  24 ++-
 hbase-annotations/index.html|   4 +-
 hbase-annotations/integration.html  |   4 +-
 hbase-annotations/issue-tracking.html   |   4 +-
 hbase-annotations/license.html  |   4 +-
 hbase-annotations/mail-lists.html   |   4 +-
 hbase-annotations/plugin-management.html|   4 +-
 hbase-annotations/plugins.html  |   4 +-
 hbase-annotations/project-info.html |   4 +-
 hbase-annotations/project-summary.html  |   4 +-
 hbase-annotations/source-repository.html|   4 +-
 hbase-annotations/team-list.html|   4 +-
 hbase-build-configuration/dependencies.html |   4 +-
 .../dependency-convergence.html |   4 +-
 hbase-build-configuration/dependency-info.html  |   4 +-
 .../dependency-management.html  |  24 ++-
 .../hbase-archetypes/dependencies.html  |   4 +-
 .../dependency-convergence.html |   4 +-
 .../hbase-archetypes/dependency-info.html   |   4 +-
 .../hbase-archetypes/dependency-management.html |  24 ++-
 .../hbase-archetype-builder/dependencies.html   |   4 +-
 .../dependency-convergence.html |   4 +-
 .../dependency-info.html|   4 +-
 .../dependency-management.html  |  24 ++-
 .../hbase-archetype-builder/index.html  |   4 +-
 .../hbase-archetype-builder/integration.html|   4 +-
 .../hbase-archetype-builder/issue-tracking.html |   4 +-
 .../hbase-archetype-builder/license.html|   4 +-
 .../hbase-archetype-builder/mail-lists.html |   4 +-
 .../plugin-management.html  |   4 +-
 .../hbase-archetype-builder/plugins.html|   4 +-
 .../hbase-archetype-builder/project-info.html   |   4 +-
 .../project-summary.html|   4 +-
 .../source-repository.html  |   4 +-
 .../hbase-archetype-builder/team-list.html  |   4 +-
 .../hbase-client-project/checkstyle.html|   4 +-
 .../hbase-client-project/dependencies.html  |  90 +-
 .../dependency-convergence.html |   4 +-
 .../hbase-client-project/dependency-info.html   |   4 +-
 .../dependency-management.html  |  24 ++-
 .../hbase-client-project/index.html |   4 +-
 .../hbase-client-project/integration.html   |   4 +-
 .../hbase-client-project/issue-tracking.html|   4 +-
 .../hbase-client-project/license.html   |   4 +-
 .../hbase-client-project/mail-lists.html|   4 +-
 .../hbase-client-project/plugin-management.html |   4 +-
 .../hbase-client-project/plugins.html   |   4 +-
 .../hbase-client-project/project-info.html  |   4 +-
 .../hbase-client-project/project-reports.html   |   4 +-
 .../hbase-client-project/project-summary.html   |   4 +-
 .../hbase-client-project/source-repository.html |   4 +-
 .../hbase-client-project/team-list.html |   4 +-
 .../hbase-shaded-client-project/checkstyle.html |   4 +-
 .../dependencies.html   |  90 +-
 .../dependency-convergence.html |   4 +-
 .../dependency-info.html|   4 +-
 .../dependency-management.html  |  24 ++-
 .../hbase-shaded-client-project/index.html  |   4 +-
 

[1/6] hbase-site git commit: Published site at .

2017-09-17 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site c2ba0c81f -> edf91939f


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/resources.html
--
diff --git a/resources.html b/resources.html
index 7e7aab9..4aa757d 100644
--- a/resources.html
+++ b/resources.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Other Apache HBase (TM) Resources
 
@@ -336,7 +336,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/source-repository.html
--
diff --git a/source-repository.html b/source-repository.html
index 27107c8..3f3e9da 100644
--- a/source-repository.html
+++ b/source-repository.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Source Code Management
 
@@ -304,7 +304,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/sponsors.html
--
diff --git a/sponsors.html b/sponsors.html
index eee22ce..c97c8ea 100644
--- a/sponsors.html
+++ b/sponsors.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Apache HBase™ Sponsors
 
@@ -338,7 +338,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/supportingprojects.html
--
diff --git a/supportingprojects.html b/supportingprojects.html
index 418734b..9d2169b 100644
--- a/supportingprojects.html
+++ b/supportingprojects.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Supporting Projects
 
@@ -525,7 +525,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/team-list.html
--
diff --git a/team-list.html b/team-list.html
index fe8acb8..e21ae64 100644
--- a/team-list.html
+++ b/team-list.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Project Team
 
@@ -699,7 +699,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-09-16
+  Last Published: 
2017-09-17
 
 
 



[3/6] hbase-site git commit: Published site at .

2017-09-17 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-build-configuration/hbase-spark/dependencies.html
--
diff --git a/hbase-build-configuration/hbase-spark/dependencies.html 
b/hbase-build-configuration/hbase-spark/dependencies.html
index 83900e9..4b57473 100644
--- a/hbase-build-configuration/hbase-spark/dependencies.html
+++ b/hbase-build-configuration/hbase-spark/dependencies.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Spark  Project Dependencies
 
@@ -915,8 +915,8 @@
 http://www.opensource.org/licenses/BSD-3-Clause;>The BSD 3-Clause 
License
 
 org.glassfish
-http://el-spec.java.net;>javax.el
-3.0.0
+http://uel.java.net;>javax.el
+3.0.1-b08
 jar
 https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
 
@@ -3270,16 +3270,7 @@ The following provides more details on the included 
cryptographic software:
 Description: Java.net - The Source for Java Technology 
Collaboration
 URL: http://jstl.java.net;>http://jstl.java.net
 Project Licenses: http://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
-org.glassfish:javax.el:jar:3.0.0 (compile) 
-
-
-Expression Language 3.0
-
-
-Description: Java.net - The Source for Java Technology 
Collaboration
-URL: http://el-spec.java.net;>http://el-spec.java.net
-Project Licenses: https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
-org.eclipse.jetty.orbit:org.eclipse.jdt.core:jar:3.8.2.v20130121 (compile) 

+org.eclipse.jetty.orbit:org.eclipse.jdt.core:jar:3.8.2.v20130121 (compile) 

 
 
 Jetty Orbit :: JDT Compiler
@@ -3290,7 +3281,7 @@ The following provides more details on the included 
cryptographic software:
 org.eclipse.jdt.core.compiler.batch_3.8.2.v20130121-145325
 URL: http://www.eclipse.org/jetty/jetty-orbit/org.eclipse.jdt.core;>http://www.eclipse.org/jetty/jetty-orbit/org.eclipse.jdt.core
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.eclipse.jetty:jetty-webapp:jar:9.4.6.v20170531 (compile) 
+org.eclipse.jetty:jetty-webapp:jar:9.4.6.v20170531 (compile) 
 
 
 Jetty :: Webapp Application Support
@@ -3300,7 +3291,7 @@ The following provides more details on the included 
cryptographic software:
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
 
-org.eclipse.jetty:jetty-xml:jar:9.4.6.v20170531 (compile) 
+org.eclipse.jetty:jetty-xml:jar:9.4.6.v20170531 (compile) 
 
 
 Jetty :: XML utilities
@@ -3309,7 +3300,7 @@ The following provides more details on the included 
cryptographic software:
 Description: The jetty xml utilities.
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.eclipse.jetty:jetty-http:jar:9.4.6.v20170531 (compile) 
+org.eclipse.jetty:jetty-http:jar:9.4.6.v20170531 (compile) 
 
 
 Jetty :: Http Utility
@@ -3318,7 +3309,7 @@ The following provides more details on the included 
cryptographic software:
 Description: The Eclipse Jetty Project
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.eclipse.jetty:jetty-security:jar:9.4.6.v20170531 (compile) 
+org.eclipse.jetty:jetty-security:jar:9.4.6.v20170531 (compile) 
 
 
 Jetty :: Security
@@ -3327,7 +3318,7 @@ The following provides more details on the included 
cryptographic software:
 Description: Jetty security infrastructure
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.25.1 
(compile) 
+org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.25.1 
(compile) 
 
 
 jersey-container-servlet-core
@@ -3337,7 +3328,7 @@ The following provides more details on the included 
cryptographic software:
 URL: https://jersey.java.net/project/jersey-container-servlet-core/;>https://jersey.java.net/project/jersey-container-servlet-core/
 Project Licenses: http://glassfish.java.net/public/CDDL+GPL_1_1.html;>CDDL+GPL 
License
 
-org.glassfish.hk2.external:javax.inject:jar:2.5.0-b32 (compile) 

hbase-site git commit: INFRA-10751 Empty commit

2017-09-17 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site edf91939f -> d0a296b6a


INFRA-10751 Empty commit


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

Branch: refs/heads/asf-site
Commit: d0a296b6ae3c226e3c534337f85da248b5c9bdca
Parents: edf9193
Author: jenkins 
Authored: Sun Sep 17 15:13:20 2017 +
Committer: jenkins 
Committed: Sun Sep 17 15:13:20 2017 +

--

--




[2/6] hbase-site git commit: Published site at .

2017-09-17 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-shaded-check-invariants/dependencies.html
--
diff --git a/hbase-shaded-check-invariants/dependencies.html 
b/hbase-shaded-check-invariants/dependencies.html
index c38e8e8..eedb11c 100644
--- a/hbase-shaded-check-invariants/dependencies.html
+++ b/hbase-shaded-check-invariants/dependencies.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase Shaded Packaging Invariants  Project 
Dependencies
 
@@ -639,60 +639,66 @@
 jar
 http://www.opensource.org/licenses/BSD-3-Clause;>The BSD 3-Clause 
License
 
+org.glassfish
+http://uel.java.net;>javax.el
+3.0.1-b08
+jar
+https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
+
 org.jamon
 http://www.jamon.org/jamon-java-parent/jamon-runtime/;>jamon-runtime
 2.4.1
 jar
 http://www.mozilla.org/MPL/2.0;>Mozilla 
Public License Version 2.0
-
+
 org.jruby.jcodings
 http://nexus.sonatype.org/oss-repository-hosting.html/jcodings;>jcodings
 1.0.18
 jar
 http://www.opensource.org/licenses/mit-license.php;>MIT 
License
-
+
 org.jruby.joni
 http://nexus.sonatype.org/oss-repository-hosting.html/joni;>joni
 2.1.11
 jar
 http://www.opensource.org/licenses/mit-license.php;>MIT 
License
-
+
 org.mortbay.jetty
 http://www.eclipse.org/jetty/jetty-parent/project/modules/jetty;>jetty
 6.1.26
 jar
 http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0-http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-
+
 org.mortbay.jetty
 http://www.eclipse.org/jetty/jetty-parent/project/jetty-util;>jetty-util
 6.1.26
 jar
 http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0-http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-
+
 org.slf4j
 http://www.slf4j.org;>slf4j-api
 1.7.24
 jar
 http://www.opensource.org/licenses/mit-license.php;>MIT 
License
-
+
 org.slf4j
 http://www.slf4j.org;>slf4j-log4j12
 1.6.1
 jar
 http://www.opensource.org/licenses/mit-license.php;>MIT 
License
-
+
 org.tukaani
 http://tukaani.org/xz/java.html;>xz
 1.0
 jar
 Public Domain
-
+
 org.xerial.snappy
 http://github.com/xerial/snappy-java/;>snappy-java
 1.0.5
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 xmlenc
 http://xmlenc.sourceforge.net;>xmlenc
 0.52
@@ -1460,7 +1466,16 @@ These include: bzip2, gzip, pack200, xz and ar, cpio, 
jar, tar, zip, dump.
 Description: Procedure Framework
 URL: http://hbase.apache.org/hbase-build-configuration/hbase-procedure;>http://hbase.apache.org/hbase-build-configuration/hbase-procedure
 Project Licenses: https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-org.codehaus.jettison:jettison:jar:1.3.8 (compile) 
+org.glassfish:javax.el:jar:3.0.1-b08 (compile) 
+
+
+Expression Language 3.0
+
+
+Description: Java.net - The Source for Java Technology 
Collaboration
+URL: http://uel.java.net;>http://uel.java.net
+Project Licenses: https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
+org.codehaus.jettison:jettison:jar:1.3.8 (compile) 
 
 
 Jettison
@@ -1469,7 +1484,7 @@ These include: bzip2, gzip, pack200, xz and ar, cpio, 
jar, tar, zip, dump.
 Description: A StAX implementation for JSON.
 URL: https://github.com/jettison-json/jettison;>https://github.com/jettison-json/jettison
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache License, Version 
2.0
-org.jamon:jamon-runtime:jar:2.4.1 (compile) 
+org.jamon:jamon-runtime:jar:2.4.1 (compile) 
 
 
 jamon-runtime
@@ -1478,7 +1493,7 @@ These include: bzip2, gzip, pack200, xz and ar, cpio, 
jar, tar, zip, dump.
 Description: Jamon runtime support classes
 URL: http://www.jamon.org/jamon-java-parent/jamon-runtime/;>http://www.jamon.org/jamon-java-parent/jamon-runtime/
 Project Licenses: http://www.mozilla.org/MPL/2.0;>Mozilla Public License Version 
2.0
-com.lmax:disruptor:jar:3.3.6 (compile) 
+com.lmax:disruptor:jar:3.3.6 (compile) 
 
 
 Disruptor Framework
@@ -1487,7 +1502,7 @@ These include: bzip2, gzip, pack200, xz and ar, cpio, 
jar, tar, zip, dump.
 Description: Disruptor - Concurrent Programming Framework
 URL: http://lmax-exchange.github.com/disruptor;>http://lmax-exchange.github.com/disruptor
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-org.apache.hadoop:hadoop-distcp:jar:2.7.1 (compile) 
+org.apache.hadoop:hadoop-distcp:jar:2.7.1 (compile) 
 
 
 Apache Hadoop Distributed Copy
@@ -1495,7 +1510,7 @@ These include: bzip2, gzip, pack200, xz and ar, cpio, 
jar, tar, zip, dump.
 
 Description: Apache Hadoop Distributed Copy
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-org.apache.hadoop:hadoop-client:jar:2.7.1 (compile) 
+org.apache.hadoop:hadoop-client:jar:2.7.1 

[4/6] hbase-site git commit: Published site at .

2017-09-17 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/edf91939/hbase-build-configuration/hbase-archetypes/hbase-shaded-client-project/dependencies.html
--
diff --git 
a/hbase-build-configuration/hbase-archetypes/hbase-shaded-client-project/dependencies.html
 
b/hbase-build-configuration/hbase-archetypes/hbase-shaded-client-project/dependencies.html
index f8454db..6c38bd0 100644
--- 
a/hbase-build-configuration/hbase-archetypes/hbase-shaded-client-project/dependencies.html
+++ 
b/hbase-build-configuration/hbase-archetypes/hbase-shaded-client-project/dependencies.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase - Exemplar for hbase-shaded-client archetype  
Project Dependencies
 
@@ -1026,8 +1026,8 @@
 http://www.opensource.org/licenses/BSD-3-Clause;>The BSD 3-Clause 
License
 
 org.glassfish
-http://el-spec.java.net;>javax.el
-3.0.0
+http://uel.java.net;>javax.el
+3.0.1-b08
 -
 jar
 https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
@@ -1649,16 +1649,7 @@ built on Jackson JSON processor
 Description: Java.net - The Source for Java Technology 
Collaboration
 URL: http://jstl.java.net;>http://jstl.java.net
 Project Licenses: http://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
-org.glassfish:javax.el:jar:3.0.0 (test) 
-
-
-Expression Language 3.0
-
-
-Description: Java.net - The Source for Java Technology 
Collaboration
-URL: http://el-spec.java.net;>http://el-spec.java.net
-Project Licenses: https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
-org.eclipse.jetty.orbit:org.eclipse.jdt.core:jar:3.8.2.v20130121 (test) 

+org.eclipse.jetty.orbit:org.eclipse.jdt.core:jar:3.8.2.v20130121 (test) 

 
 
 Jetty Orbit :: JDT Compiler
@@ -1669,7 +1660,7 @@ built on Jackson JSON processor
 org.eclipse.jdt.core.compiler.batch_3.8.2.v20130121-145325
 URL: http://www.eclipse.org/jetty/jetty-orbit/org.eclipse.jdt.core;>http://www.eclipse.org/jetty/jetty-orbit/org.eclipse.jdt.core
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.eclipse.jetty:jetty-webapp:jar:9.4.6.v20170531 (test) 
+org.eclipse.jetty:jetty-webapp:jar:9.4.6.v20170531 (test) 
 
 
 Jetty :: Webapp Application Support
@@ -1679,7 +1670,7 @@ built on Jackson JSON processor
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
 
-org.eclipse.jetty:jetty-xml:jar:9.4.6.v20170531 (test) 
+org.eclipse.jetty:jetty-xml:jar:9.4.6.v20170531 (test) 
 
 
 Jetty :: XML utilities
@@ -1688,7 +1679,7 @@ built on Jackson JSON processor
 Description: The jetty xml utilities.
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.eclipse.jetty:jetty-http:jar:9.4.6.v20170531 (test) 
+org.eclipse.jetty:jetty-http:jar:9.4.6.v20170531 (test) 
 
 
 Jetty :: Http Utility
@@ -1697,7 +1688,7 @@ built on Jackson JSON processor
 Description: The Eclipse Jetty Project
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.eclipse.jetty:jetty-security:jar:9.4.6.v20170531 (test) 
+org.eclipse.jetty:jetty-security:jar:9.4.6.v20170531 (test) 
 
 
 Jetty :: Security
@@ -1706,7 +1697,7 @@ built on Jackson JSON processor
 Description: Jetty security infrastructure
 URL: http://www.eclipse.org/jetty;>http://www.eclipse.org/jetty
 Project Licenses: http://www.apache.org/licenses/LICENSE-2.0;>Apache Software License - 
Version 2.0, http://www.eclipse.org/org/documents/epl-v10.php;>Eclipse Public License 
- Version 1.0
-org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.25.1 
(test) 
+org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.25.1 
(test) 
 
 
 jersey-container-servlet-core
@@ -1716,7 +1707,7 @@ built on Jackson JSON processor
 URL: https://jersey.java.net/project/jersey-container-servlet-core/;>https://jersey.java.net/project/jersey-container-servlet-core/
 Project Licenses: http://glassfish.java.net/public/CDDL+GPL_1_1.html;>CDDL+GPL 
License
 
-org.glassfish.hk2.external:javax.inject:jar:2.5.0-b32 (test) 
+org.glassfish.hk2.external:javax.inject:jar:2.5.0-b32 (test) 
 
 
 javax.inject:1 as OSGi bundle
@@ -1725,7 +1716,7 @@ built on Jackson JSON processor
 Description: Injection