[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-08-30 Thread elserj
Merge branch '1.7' into 1.8


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

Branch: refs/heads/1.8
Commit: d28a3ee3e154cc21b38523c254398bb01b7dbec7
Parents: 6027997 661dac3
Author: Josh Elser 
Authored: Wed Aug 31 00:00:44 2016 -0400
Committer: Josh Elser 
Committed: Wed Aug 31 00:00:44 2016 -0400

--
 TESTING.md  | 57 +++-
 pom.xml | 21 +++-
 .../harness/AccumuloClusterHarness.java |  3 ++
 .../accumulo/harness/SharedMiniClusterBase.java |  3 ++
 .../org/apache/accumulo/test/NamespacesIT.java  |  3 ++
 .../test/categories/AnyClusterTest.java | 25 +
 .../test/categories/MiniClusterOnlyTest.java| 24 +
 .../accumulo/test/categories/package-info.java  | 21 
 .../accumulo/test/functional/ClassLoaderIT.java |  3 ++
 .../test/functional/ConfigurableMacBase.java|  3 ++
 .../accumulo/test/functional/KerberosIT.java|  3 ++
 .../test/functional/KerberosProxyIT.java|  3 ++
 .../test/functional/KerberosRenewalIT.java  |  3 ++
 .../accumulo/test/functional/PermissionsIT.java |  3 ++
 .../accumulo/test/functional/TableIT.java   |  3 ++
 .../test/replication/KerberosReplicationIT.java |  3 ++
 trace/pom.xml   |  1 +
 17 files changed, 156 insertions(+), 26 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/accumulo/blob/d28a3ee3/TESTING.md
--
diff --cc TESTING.md
index 2195108,125110b..9799397
--- a/TESTING.md
+++ b/TESTING.md
@@@ -91,7 -79,9 +79,26 @@@ Use of a standalone cluster can be enab
  providing a Java properties file on the Maven command line. The use of a 
properties file is recommended since it is
  typically a fixed file per standalone cluster you want to run the tests 
against.
  
- ### Configuration
+ These tests will always run during the `integration-test` lifecycle phase 
using `mvn verify`.
+ 
++### Performance tests
++
++Performance tests refer to a small subset of integration tests which are not 
activated by default. These tests allow
++developers to write tests which specifically exercise expected performance 
which may be dependent on the available
++resources of the host machine. Normal integration tests should be capable of 
running anywhere with a lower-bound on
++available memory.
++
++These tests are designated using the JUnit Category annotation with the 
`PerformanceTest` interface in the
++accumulo-test module. See the `PerformanceTest` interface for more 
information on how to use this to write your
++own performance test.
++
++To invoke the performance tests, activate the `performanceTests` Maven 
profile in addition to the integration-test
++or verify Maven lifecycle. For example `mvn verify -PperformanceTests` would 
invoke all of the integration tests:
++both normal integration tests and the performance tests. There is presently 
no way to invoke only the performance
++tests without the rest of the integration tests.
++
++
+ ## Configuration for Standalone clusters
  
  The following properties can be used to configure a standalone cluster:
  

http://git-wip-us.apache.org/repos/asf/accumulo/blob/d28a3ee3/pom.xml
--
diff --cc pom.xml
index 77e5597,d6393d2..8106dff
--- a/pom.xml
+++ b/pom.xml
@@@ -116,8 -115,10 +116,12 @@@
  https://builds.apache.org/view/A-D/view/Accumulo/


+ 
org.apache.accumulo.test.categories.AnyClusterTest
 -
++
${accumulo.performanceTests
+ 
${accumulo.anyClusterTests},${accumulo.miniclusterTests}
+ 
org.apache.accumulo.test.categories.MiniClusterOnlyTest
 +
 +
org.apache.accumulo.test.PerformanceTest
  
  ${project.version}
  posix

http://git-wip-us.apache.org/repos/asf/accumulo/blob/d28a3ee3/test/src/main/java/org/apache/accumulo/harness/AccumuloClusterHarness.java
--
diff --cc 
test/src/main/java/org/apache/accumulo/harness/AccumuloClusterHarness.java
index 7d7b73a,000..70d8dc7
mode 100644,00..100644
--- a/test/src/main/java/org/apache/accumulo/harness/AccumuloClusterHarness.java
+++ b/test/src/main/java/org/apache/accumulo/harness/AccumuloClusterHarness.java
@@@ -1,338 -1,0 +1,341 @@@
 +/*
 + * 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.
 + 

[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-08-16 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: 5e53631b2bb5cc9f85de728d7217fe495dfe4fdd
Parents: 711b421 7eb4a09
Author: Christopher Tubbs 
Authored: Tue Aug 16 20:17:48 2016 -0400
Committer: Christopher Tubbs 
Committed: Tue Aug 16 20:17:48 2016 -0400

--
 .../java/org/apache/accumulo/server/fs/VolumeManagerImpl.java  | 6 --
 1 file changed, 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/accumulo/blob/5e53631b/server/base/src/main/java/org/apache/accumulo/server/fs/VolumeManagerImpl.java
--



[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-08-11 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: 93e188f625f75c5486ac3603d581cfb40bc18b8d
Parents: e6d1ee2 4885470
Author: Christopher Tubbs 
Authored: Thu Aug 11 21:24:56 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 11 21:24:56 2016 -0400

--
 assemble/build.sh | 2 ++
 1 file changed, 2 insertions(+)
--




[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-08-10 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: e6d1ee2549cd340a2d924bf5617b7083698b6edf
Parents: f1c3f38 78638cb
Author: Christopher Tubbs 
Authored: Wed Aug 10 17:49:28 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Aug 10 17:49:28 2016 -0400

--
 server/native/src/main/resources/Makefile | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
--




[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-08-10 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: f1c3f38d82d6601c9d326417b1bffa9102068749
Parents: 3fded56 a7b482a
Author: Christopher Tubbs 
Authored: Wed Aug 10 16:09:38 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Aug 10 16:09:38 2016 -0400

--
 server/native/src/main/resources/Makefile | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)
--




[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-08-01 Thread elserj
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: 36f8fcc7f578044b01d0f445b2fab6dc65bb610b
Parents: 74507ae 268922b
Author: Josh Elser 
Authored: Mon Aug 1 16:55:25 2016 -0400
Committer: Josh Elser 
Committed: Mon Aug 1 16:55:25 2016 -0400

--
 .../org/apache/accumulo/test/ShellServerIT.java | 24 ++--
 1 file changed, 7 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/accumulo/blob/36f8fcc7/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
--
diff --cc test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
index 61d3d4a,000..8db0185
mode 100644,00..100644
--- a/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
@@@ -1,1894 -1,0 +1,1884 @@@
 +/*
 + * 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.
 + */
 +package org.apache.accumulo.test;
 +
 +import static 
com.google.common.util.concurrent.Uninterruptibles.sleepUninterruptibly;
 +import static org.junit.Assert.assertEquals;
 +import static org.junit.Assert.assertFalse;
 +import static org.junit.Assert.assertNotNull;
 +import static org.junit.Assert.assertTrue;
 +import static org.junit.Assert.fail;
 +
 +import java.io.BufferedReader;
 +import java.io.File;
 +import java.io.FileReader;
 +import java.io.IOException;
 +import java.io.InputStream;
 +import java.io.OutputStream;
 +import java.io.PrintWriter;
 +import java.lang.reflect.Constructor;
 +import java.util.ArrayList;
 +import java.util.Arrays;
 +import java.util.Collections;
 +import java.util.Iterator;
 +import java.util.List;
 +import java.util.Map;
 +import java.util.Map.Entry;
 +import java.util.Random;
 +import java.util.concurrent.TimeUnit;
 +
 +import org.apache.accumulo.core.Constants;
 +import org.apache.accumulo.core.client.ClientConfiguration;
 +import org.apache.accumulo.core.client.ClientConfiguration.ClientProperty;
 +import org.apache.accumulo.core.client.Connector;
 +import org.apache.accumulo.core.client.IteratorSetting;
 +import org.apache.accumulo.core.client.Scanner;
 +import org.apache.accumulo.core.client.TableNotFoundException;
 +import org.apache.accumulo.core.client.admin.TableOperations;
 +import org.apache.accumulo.core.client.impl.Namespaces;
 +import org.apache.accumulo.core.client.sample.RowSampler;
 +import org.apache.accumulo.core.client.security.tokens.AuthenticationToken;
 +import org.apache.accumulo.core.client.security.tokens.KerberosToken;
 +import org.apache.accumulo.core.client.security.tokens.PasswordToken;
 +import org.apache.accumulo.core.conf.AccumuloConfiguration;
 +import org.apache.accumulo.core.conf.Property;
 +import org.apache.accumulo.core.data.Key;
 +import org.apache.accumulo.core.data.Value;
 +import org.apache.accumulo.core.file.FileOperations;
 +import org.apache.accumulo.core.file.FileSKVWriter;
 +import org.apache.accumulo.core.metadata.MetadataTable;
 +import org.apache.accumulo.core.security.Authorizations;
 +import org.apache.accumulo.core.util.format.Formatter;
 +import org.apache.accumulo.core.util.format.FormatterConfig;
 +import org.apache.accumulo.harness.SharedMiniClusterBase;
 +import org.apache.accumulo.harness.MiniClusterConfigurationCallback;
 +import org.apache.accumulo.minicluster.impl.MiniAccumuloConfigImpl;
 +import org.apache.accumulo.shell.Shell;
 +import org.apache.accumulo.test.functional.SlowIterator;
 +import org.apache.accumulo.tracer.TraceServer;
 +import org.apache.commons.configuration.ConfigurationException;
 +import org.apache.commons.io.FileUtils;
 +import org.apache.commons.lang.StringUtils;
 +import org.apache.hadoop.conf.Configuration;
 +import org.apache.hadoop.fs.FileSystem;
 +import 

[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-06-17 Thread busbey
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: 519e5b790ad091c0c15afd3d7b8a5ed92098947b
Parents: e811851 7b92053
Author: Sean Busbey 
Authored: Fri Jun 17 17:00:49 2016 -0500
Committer: Sean Busbey 
Committed: Fri Jun 17 17:00:49 2016 -0500

--
 LICENSE | 54 --
 1 file changed, 52 insertions(+), 2 deletions(-)
--




[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-06-09 Thread elserj
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: cb25e77a2df29a7839a1d77357c4e6e6beafb82f
Parents: 6a5a817 462dfbc
Author: Josh Elser 
Authored: Thu Jun 9 18:40:45 2016 -0400
Committer: Josh Elser 
Committed: Thu Jun 9 18:40:45 2016 -0400

--

--




[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-06-08 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: 6a5a8179949fa82a8c8b235a78eba7baf61e
Parents: 4a5f276 4dabc2b
Author: Christopher Tubbs 
Authored: Wed Jun 8 23:59:12 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Jun 8 23:59:12 2016 -0400

--
 .travis.yml | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)
--




[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-06-08 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: 8d954e2ca1c782601ffbce56ccc78de43a63650b
Parents: eff4547 e743695
Author: Christopher Tubbs 
Authored: Wed Jun 8 20:39:40 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Jun 8 20:39:40 2016 -0400

--
 test/src/main/resources/log4j.properties | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/accumulo/blob/8d954e2c/test/src/main/resources/log4j.properties
--
diff --cc test/src/main/resources/log4j.properties
index 965c1ca,000..6041ee5
mode 100644,00..100644
--- a/test/src/main/resources/log4j.properties
+++ b/test/src/main/resources/log4j.properties
@@@ -1,57 -1,0 +1,57 @@@
 +# 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.
 +
 +log4j.rootLogger=DEBUG, CA
 +log4j.appender.CA=org.apache.log4j.ConsoleAppender
 +log4j.appender.CA.layout=org.apache.log4j.PatternLayout
 +log4j.appender.CA.layout.ConversionPattern=%d{ISO8601} [%c{2}] %-5p: %m%n
 +
 +log4j.logger.org.apache.accumulo.core=DEBUG
 +log4j.logger.org.apache.accumulo.core.client.impl.MasterClient=INFO
 +log4j.logger.org.apache.accumulo.core.client.impl.ServerClient=ERROR
 +log4j.logger.org.apache.accumulo.core.util.shell.Shell.audit=OFF
 +log4j.logger.org.apache.accumulo.core.util.shell.Shell=FATAL
 +log4j.logger.org.apache.commons.vfs2.impl.DefaultFileSystemManager=WARN
 +log4j.logger.org.apache.hadoop.io.compress.CodecPool=WARN
 +log4j.logger.org.apache.hadoop.mapred=ERROR
 +log4j.logger.org.apache.hadoop.tools.DistCp=WARN
 +log4j.logger.org.apache.hadoop.util.NativeCodeLoader=ERROR
 +log4j.logger.org.apache.hadoop.util.ProcessTree=WARN
++log4j.logger.org.apache.zookeeper=INFO
 +log4j.logger.org.apache.zookeeper.ClientCnxn=FATAL
- log4j.logger.org.apache.zookeeper.ClientCnxnSocketNIO=INFO
 +log4j.logger.org.apache.zookeeper.ZooKeeper=WARN
 +log4j.logger.org.apache.accumulo.core.file.rfile.bcfile=INFO
 +log4j.logger.org.apache.accumulo.server.util.ReplicationTableUtil=TRACE
 +log4j.logger.org.apache.accumulo.core.client.impl.ThriftScanner=INFO
 +log4j.logger.org.apache.accumulo.fate.zookeeper.DistributedReadWriteLock=WARN
 +log4j.logger.org.mortbay.log=WARN
 +log4j.logger.org.apache.hadoop=WARN
 +log4j.logger.org.apache.jasper=INFO
 +log4j.logger.org.apache.hadoop.hdfs.server.namenode.FSNamesystem.audit=WARN
 +log4j.logger.org.apache.hadoop.hdfs.server.datanode.DataNode.clienttrace=WARN
 +log4j.logger.BlockStateChange=WARN
 
+log4j.logger.org.apache.accumulo.core.client.impl.TabletServerBatchReaderIterator=INFO
 +log4j.logger.org.apache.hadoop.security=INFO
 +log4j.logger.org.apache.hadoop.minikdc=DEBUG
 +log4j.logger.org.apache.directory=INFO
 +log4j.logger.org.apache.directory.api.ldap=WARN
 +# This is really spammy at debug
 +log4j.logger.org.apache.thrift.transport.TSaslTransport=INFO
 +# From apache-ds/minikdc
 +log4j.logger.org.apache.mina=INFO
 +log4j.logger.org.apache.accumulo.server.thrift.UGIAssumingProcessor=TRACE
 +log4j.logger.org.apache.hadoop.security.UserGroupInformation=INFO
 +# For debugging replication tests.
- log4j.logger.org.apache.accumulo.master.MasterDrainImpl=TRACE
++log4j.logger.org.apache.accumulo.master.MasterDrainImpl=TRACE



[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-05-26 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: fd37134c9b86b83ad8f0e57301ab50beda54e789
Parents: e15b023 e7e0f38
Author: Christopher Tubbs 
Authored: Thu May 26 22:23:13 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu May 26 22:23:13 2016 -0400

--
 assemble/pom.xml|   2 -
 assemble/src/main/assemblies/component.xml  |  16 +-
 maven-plugin/pom.xml|   6 +
 .../org/apache/accumulo/plugin/PluginIT.java| 136 ---
 .../org/apache/accumulo/plugin/it/PluginIT.java | 137 +++
 pom.xml | 234 +--
 server/native/pom.xml   |   1 -
 test/pom.xml|   2 +
 8 files changed, 213 insertions(+), 321 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/accumulo/blob/fd37134c/assemble/pom.xml
--

http://git-wip-us.apache.org/repos/asf/accumulo/blob/fd37134c/maven-plugin/pom.xml
--

http://git-wip-us.apache.org/repos/asf/accumulo/blob/fd37134c/pom.xml
--
diff --cc pom.xml
index 8241b64,3cbba12..f783731
--- a/pom.xml
+++ b/pom.xml
@@@ -24,12 -24,18 +24,18 @@@

org.apache.accumulo
accumulo-project
 -  1.7.2-SNAPSHOT
 +  1.8.0-SNAPSHOT
pom
Apache Accumulo Project
-   Apache Accumulo is a sorted, distributed key/value store based 
on Google's BigTable design. It is built on top of Apache Hadoop, Zookeeper, 
and Thrift. It features a few novel improvements on the BigTable design in the 
form of cell-level access labels and a server-side programming mechanism that 
can modify key/value pairs at various points in the data management 
process.
-   
-   http://accumulo.apache.org/maven-site/
+   Apache Accumulo is a sorted, distributed key/value store based
+ on Google's BigTable design. It is built on top of Apache Hadoop,
+ Zookeeper, and Thrift. It features a few novel improvements on the 
BigTable
+ design in the form of cell-level access labels and a server-side
+ programming mechanism that can modify key/value pairs at various points in
+ the data management process.
+   
+   https://accumulo.apache.org

2011

@@@ -109,23 -114,12 +115,16 @@@
  Apache Jenkins
  https://builds.apache.org/view/A-D/view/Accumulo/

-   
- 
-   accumulo.mvn.website
-   Accumulo Maven Site
-   
-   
scm:svn:https://svn.apache.org/repos/asf/accumulo/site/trunk/maven-site
- 
-   

 +
 +
org.apache.accumulo.test.PerformanceTest
  
  ${project.version}
+ gnu
  
  1.50
 +
 +2.7.1
  
  
${project.parent.basedir}/contrib/Eclipse-Accumulo-Codestyle.xml
  
@@@ -614,23 -589,8 +620,13 @@@
  
  
org.apache.maven.plugins
 +  maven-shade-plugin
 +  2.3
 +
 +
 +  org.apache.maven.plugins
-   maven-assembly-plugin
-   
- false
- 
- accumulo-${project.version}
- gnu
-   
- 
- 
-   org.apache.maven.plugins
maven-changes-plugin
-   2.11
+   2.12

  
JIRA

http://git-wip-us.apache.org/repos/asf/accumulo/blob/fd37134c/server/native/pom.xml
--

http://git-wip-us.apache.org/repos/asf/accumulo/blob/fd37134c/test/pom.xml
--
diff --cc test/pom.xml
index 6da0f0e,a5533bd..ea2e374
--- a/test/pom.xml
+++ b/test/pom.xml
@@@ -238,49 -233,8 +238,50 @@@
  

  
 +
 +  org.apache.maven.plugins
 +  maven-jar-plugin
 +  
 +
++  create-iterator-test-jar
 +  
 +test-jar
 +  
 +  pre-integration-test
 +  
 +TestIterators
 +
 +
 +  
org/apache/accumulo/test/functional/ValueReversingIterator.class
 +
 +  
 +
 +  
 +

  
 +
 +  
 +org.codehaus.mojo
 +exec-maven-plugin
 +
 +  
 +check-for-misplaced-ITs
 +

[09/10] accumulo git commit: Merge branch '1.7' into 1.8

2016-05-18 Thread ctubbsii
Merge branch '1.7' into 1.8


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

Branch: refs/heads/master
Commit: d950d3548637b057ed296c2582d4b5c70a76ff73
Parents: 73b4fbb 7cffcfc
Author: Christopher Tubbs 
Authored: Wed May 18 17:31:50 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed May 18 17:31:50 2016 -0400

--
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/accumulo/blob/d950d354/pom.xml
--