[fluo] branch build-resources updated: Add Accumulo API checks to checkstyle rules (#905)

2017-08-15 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch build-resources
in repository https://gitbox.apache.org/repos/asf/fluo.git


The following commit(s) were added to refs/heads/build-resources by this push:
 new cd362ec  Add Accumulo API checks to checkstyle rules (#905)
cd362ec is described below

commit cd362ec321787d909addefb3b77336c109b92145
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Wed Aug 16 00:37:19 2017 +0200

Add Accumulo API checks to checkstyle rules (#905)

Prevent use of non-public Accumulo APIs being imported into Fluo
classes. This removes the need to have a separate execution of
checkstyle to do Accumulo API checks in Fluo projects.
---
 src/main/resources/org/apache/fluo/resources/java-checkstyle.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml 
b/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
index f291740..24a401d 100644
--- a/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
+++ b/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
@@ -170,5 +170,11 @@
   
 
 
+
+  
+  
+  
+  
+
   
 

-- 
To stop receiving notification emails like this one, please contact
['"comm...@fluo.apache.org" <comm...@fluo.apache.org>'].


[fluo-bytes] branch master updated: Provide initial README (#1)

2017-08-10 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-bytes.git


The following commit(s) were added to refs/heads/master by this push:
 new 67b6f55  Provide initial README (#1)
67b6f55 is described below

commit 67b6f55d350fbf32f1f0da6f5fd9a4d982820c32
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Thu Aug 10 22:02:06 2017 +0200

Provide initial README (#1)
---
 README.md | 102 ++
 1 file changed, 102 insertions(+)

diff --git a/README.md b/README.md
new file mode 100644
index 000..7990152
--- /dev/null
+++ b/README.md
@@ -0,0 +1,102 @@
+
+
+# Apache Fluo Bytes
+
+[![Build Status][ti]][tl] [![Apache License][li]][ll] [![Maven 
Central][mi]][ml] [![Javadoc][ji]][jl]
+
+**Apache Fluo Bytes is a simple library with the goal of providing an extremely
+stable API for handling bytes, suitable for use in [Apache Fluo][fluo] and
+other projects' APIs.**
+
+## Features and Goals
+
+This project aims to fill a void in Java, by providing convenient objects to
+represent a sequence of bytes and associated utility classes for situations
+when a raw byte array is not appropriate.
+
+Specifically, it provides a `ByteSequence` interface, analogous to Java's
+`CharSequence`, an immutable `Bytes` implementation analogous to Java's
+`String`, and a corresponding `BytesBuilder` analogous to Java's
+`StringBuilder`.
+
+The provided classes have appropriate methods for serialization, and proper
+equals and hashCode implementations, as well as a comparator for
+`ByteSequence`, so they will be suitable for use in `Set`s and as keys in
+`Map`s.
+
+An immutable bytes implementation makes it possible to pass data between APIs
+without the need for performance-killing protective copies. This benefit is
+compounded if this library is used by multiple projects, as the need to make
+protective copies while passing data between a project and its dependency's API
+is eliminated.
+
+This project aims to provide a fluent and intuitive API, with support for
+conversions to/from other common types, such as `ByteBuffer`, `byte[]`, and
+`CharSequence`/`String`.
+
+This project requires at least Java 8, and supports `Stream` and functional
+APIs where appropriate.
+
+See this [blog post][blog] for some additional background.
+
+## Safe for APIs
+
+Using an external library in a project's API poses some risks to that project,
+especially if it and its dependencies depend on different versions of that
+library. This project attempts to mitigate those risks, so that it can be used
+safely by other projects.
+
+This project is made safe for reuse in other projects' APIs by adopting the
+following principles:
+
+* Using [Semantic Versioning 2.0.0][semver] to make strong declarations about
+  backwards-compatibility
+* Strongly avoid breaking changes (avoid major version bumps), so that projects
+  can converge on the latest version of this library required by their code and
+  that of their dependencies, without risk of incompatibility
+* No runtime dependencies itself, to eliminate any potential conflicts from
+  transitive dependencies if this library is used
+* Use generic package naming scheme not tied to the Maven coordinates, in case
+  the project relocates or becomes independent of Fluo in the future
+* Practice review-then-commit during development to protect against poor
+  initial design which is stuck with the project for the long-term
+* Provide `@since` tags in Javadocs to communicate minimum required versions
+  for particular features
+
+## Public API declaration for Semantic Versioning
+
+This project's public API are all the publicly visible classes, methods, and
+fields accessible outside the project's packages.
+
+---
+*Apache Fluo Bytes is an [Apache Fluo][fluo] project.*
+
+[blog]: https://fluo.apache.org/blog/2016/11/10/immutable-bytes/
+[semver]: http://semver.org/spec/v2.0.0.html
+[fluo]: https://fluo.apache.org/
+[ti]: https://travis-ci.org/apache/fluo-bytes.svg?branch=master
+[tl]: https://travis-ci.org/apache/fluo-bytes
+[li]: http://img.shields.io/badge/license-ASL-blue.svg
+[ll]: https://github.com/apache/fluo-bytes/blob/master/LICENSE
+[mi]: 
https://maven-badges.herokuapp.com/maven-central/org.apache.fluo/fluo-bytes/badge.svg
+[ml]: 
https://maven-badges.herokuapp.com/maven-central/org.apache.fluo/fluo-bytes/
+[ji]: 
https://javadoc-emblem.rhcloud.com/doc/org.apache.fluo/fluo-bytes/badge.svg
+[jl]: http://www.javadoc.io/doc/org.apache.fluo/fluo-bytes
+

-- 
To stop receiving notification emails like this one, please contact
['"comm...@fluo.apache.org" <comm...@fluo.apache.org>'].


[fluo-bytes] branch master created (now 187332e)

2017-08-09 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-bytes.git.


  at 187332e  Initialize repository with LICENSE and NOTICE

This branch includes the following new commits:

 new 187332e  Initialize repository with LICENSE and NOTICE

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"comm...@fluo.apache.org" <comm...@fluo.apache.org>'].


[fluo] branch build-resources updated: Modified checkstyle rules to work with 8.1

2017-08-07 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch build-resources
in repository https://gitbox.apache.org/repos/asf/fluo.git


The following commit(s) were added to refs/heads/build-resources by this push:
 new c95b870  Modified checkstyle rules to work with 8.1
c95b870 is described below

commit c95b8702798a63e1d47ad626e97b2d0b499bdcd7
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Mon Aug 7 16:57:24 2017 -0400

Modified checkstyle rules to work with 8.1

Checkstyle 8.1 requires some rules to only be used within the TreeWalker
module. This moves them to become children of TreeWalker in the rules,
so that these rules can be used with Checkstyle 8.1.
---
 pom.xml  | 2 +-
 src/main/resources/org/apache/fluo/resources/java-checkstyle.xml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 41eff91..1f0abee 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
   org.apache.fluo
   build-resources
-  1.0.1-SNAPSHOT
+  2.0.0-SNAPSHOT
   Apache Fluo Build Resources
   Resources for building Apache Fluo projects
   https://fluo.apache.org
diff --git a/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml 
b/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
index 10d929f..f291740 100644
--- a/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
+++ b/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
@@ -20,8 +20,6 @@
   
 
   
-  
-  
 
   
   
@@ -30,6 +28,8 @@
   
 
   
+
+
 
 
 

-- 
To stop receiving notification emails like this one, please contact
['"comm...@fluo.apache.org" <comm...@fluo.apache.org>'].


[fluo-website] branch asf-site updated: Jekyll build from gh-pages:4162937

2017-08-04 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/fluo-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new c3fa231  Jekyll build from gh-pages:4162937
c3fa231 is described below

commit c3fa231837b3d23e23aab3929c1c000ac6828bf5
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Fri Aug 4 22:52:12 2017 -0400

Jekyll build from gh-pages:4162937

remove incubator from github links
---
 contactus/index.html |  2 +-
 feed.xml |  4 ++--
 how-to-contribute/index.html |  8 
 people/index.html|  2 +-
 poweredby/index.html |  2 +-
 related-projects/index.html  |  2 +-
 release-process/index.html   | 10 +-
 tour/basic-read-write/index.html |  2 +-
 tour/index.html  |  2 +-
 tour/writing-code/index.html |  4 ++--
 10 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/contactus/index.html b/contactus/index.html
index 8678372..c73df34 100644
--- a/contactus/index.html
+++ b/contactus/index.html
@@ -164,7 +164,7 @@ current issues.
 
   https://github.com/apache/fluo/issues;>Fluo issues
   https://github.com/apache/fluo-recipes/issues;>Fluo Recipes 
issues
-  https://github.com/apache/incubator-fluo-website/issues;>Website 
issues
+  https://github.com/apache/fluo-website/issues;>Website 
issues
 
 
 IRC
diff --git a/feed.xml b/feed.xml
index e9500e2..93e0018 100644
--- a/feed.xml
+++ b/feed.xml
@@ -5,8 +5,8 @@
 
 https://fluo.apache.org//
 https://fluo.apache.org//feed.xml; rel="self" 
type="application/rss+xml" />
-Thu, 27 Jul 2017 15:30:56 +
-Thu, 27 Jul 2017 15:30:56 +
+Sat, 05 Aug 2017 02:52:09 +
+Sat, 05 Aug 2017 02:52:09 +
 Jekyll v3.3.1
 
   
diff --git a/how-to-contribute/index.html b/how-to-contribute/index.html
index 6d5e96f..a4721a0 100644
--- a/how-to-contribute/index.html
+++ b/how-to-contribute/index.html
@@ -110,14 +110,14 @@
   
 
   
-Contributions are welcome to all Apache Fluo repositories (https://github.com/apache/fluo;>Fluo, https://github.com/apache/fluo-recipes;>Fluo Recipes) and the https://github.com/apache/incubator-fluo-website;>Fluo project 
website.  All repositories follow a http://www.apache.org/foundation/glossary.html#ReviewThenCommit;>review-then-commit
 process.
+Contributions are welcome to all Apache Fluo repositories (https://github.com/apache/fluo;>Fluo, https://github.com/apache/fluo-recipes;>Fluo Recipes) and the https://github.com/apache/fluo-website;>Fluo project website.  All 
repositories follow a http://www.apache.org/foundation/glossary.html#ReviewThenCommit;>review-then-commit
 process.
 This means that all contributions must pass any integration tests and be 
reviewed before being committed. Code reviews are done by commenting on a 
GitHub pull request.
 
 Contribution workflow
 
 
-  Make sure you have a fork of the repository (https://github.com/apache/fluo;>Fluo, https://github.com/apache/fluo-recipes;>Fluo Recipes, https://github.com/apache/incubator-fluo-website;>Fluo Website) that 
you want contribute to.
-  Create an issue that describes the work.  Each Fluo repository has its 
own issue tracker: https://github.com/apache/fluo/issues;>Fluo, https://github.com/apache/fluo-recipes/issues;>Fluo Recipes, https://github.com/apache/incubator-fluo-website/issues;>Fluo 
Website
+  Make sure you have a fork of the repository (https://github.com/apache/fluo;>Fluo, https://github.com/apache/fluo-recipes;>Fluo Recipes, https://github.com/apache/fluo-website;>Fluo Website) that you want 
contribute to.
+  Create an issue that describes the work.  Each Fluo repository has its 
own issue tracker: https://github.com/apache/fluo/issues;>Fluo, https://github.com/apache/fluo-recipes/issues;>Fluo Recipes, https://github.com/apache/fluo-website/issues;>Fluo Website
   
 Create a branch in the local clone of your fork. An example branch name 
is fluo-301 which describes the repo and 
issue number.
 
@@ -153,7 +153,7 @@ git push origin fluo-301
 
 
   
-  Create a pull request on the GitHub page of the repo (e.g. https://github.com/apache/fluo;>Fluo, https://github.com/apache/fluo-recipes;>Fluo Recipes, https://github.com/apache/incubator-fluo-website;>Fluo Website) that 
you want to contribute to.  The pull request should merge your branch (e.g. 
fluo-301) in your fork into the master 
branch of the repo.
+  Create a pull request on the GitHub page of the repo (e.g. https://github.com/apache/fluo;>Fluo, https://github.com/apache/fluo-recipes;>Fluo Recipes, https://github.com/apache/fluo-website;>Fluo Website) that you want 
to contribute to.  The pull request should merge your branch (e.g. fluo-301) in 

svn commit: r20761 - /release/fluo/KEYS

2017-08-03 Thread ctubbsii
Author: ctubbsii
Date: Fri Aug  4 03:22:10 2017
New Revision: 20761

Log:
Copy KEYS for Apache Fluo dist/release area

Copies KEYS file from dist/release/incubator/fluo to dist/release/fluo to
prepare for future TLP releases from Apache Fluo project


Added:
release/fluo/KEYS
  - copied unchanged from r20760, release/incubator/fluo/KEYS



svn commit: r20758 - /release/fluo/

2017-08-03 Thread ctubbsii
Author: ctubbsii
Date: Fri Aug  4 03:10:03 2017
New Revision: 20758

Log:
Add dist release area for Apache Fluo

Added:
release/fluo/



[incubator-fluo-recipes] branch master updated: Removed incubating from version and documentation

2017-07-26 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 28b1b5f  Removed incubating from version and documentation
28b1b5f is described below

commit 28b1b5fad5754a9d49eb5d1639eef2daf0f481c3
Author: Mike Walch <mwa...@apache.org>
AuthorDate: Wed Jul 26 15:34:05 2017 -0400

Removed incubating from version and documentation
---
 DISCLAIMER   | 9 -
 NOTICE   | 2 +-
 modules/accumulo/pom.xml | 4 ++--
 modules/core/pom.xml | 4 ++--
 modules/kryo/pom.xml | 4 ++--
 modules/spark/pom.xml| 4 ++--
 modules/test/pom.xml | 4 ++--
 pom.xml  | 4 ++--
 8 files changed, 13 insertions(+), 22 deletions(-)

diff --git a/DISCLAIMER b/DISCLAIMER
deleted file mode 100644
index 57973b2..000
--- a/DISCLAIMER
+++ /dev/null
@@ -1,9 +0,0 @@
-Apache Fluo (incubating) Recipes is an effort undergoing incubation at The 
Apache Software
-Foundation (ASF), sponsored by Apache Incubator.
- 
-Incubation is required of all newly accepted projects until a further review
-indicates that the infrastructure, communications, and decision making process
-have stabilized in a manner consistent with other successful ASF projects.
-While incubation status is not necessarily a reflection of the completeness
-or stability of the code, it does indicate that the project has yet
-to be fully endorsed by the ASF.
diff --git a/NOTICE b/NOTICE
index 2bfe220..6675dae 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,4 +1,4 @@
-Apache Fluo (incubating) Recipes
+Apache Fluo Recipes
 Copyright 2017 The Apache Software Foundation.
 
 This product includes software developed at
diff --git a/modules/accumulo/pom.xml b/modules/accumulo/pom.xml
index d74fa32..996b785 100644
--- a/modules/accumulo/pom.xml
+++ b/modules/accumulo/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-recipes
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-recipes-accumulo
-  Apache Fluo (incubating) Recipes for Apache Accumulo
+  Apache Fluo Recipes for Apache Accumulo
   
 
   commons-configuration
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 352a812..9b1ad78 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-recipes
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-recipes-core
-  Apache Fluo (incubating) Recipes Core
+  Apache Fluo Recipes Core
   
 
   com.google.guava
diff --git a/modules/kryo/pom.xml b/modules/kryo/pom.xml
index 4860adc..886d08e 100644
--- a/modules/kryo/pom.xml
+++ b/modules/kryo/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-recipes
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-recipes-kryo
-  Apache Fluo (incubating) Recipes using Kryo
+  Apache Fluo Recipes using Kryo
   
 
   com.esotericsoftware
diff --git a/modules/spark/pom.xml b/modules/spark/pom.xml
index 7ee5192..45657e8 100644
--- a/modules/spark/pom.xml
+++ b/modules/spark/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-recipes
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-recipes-spark
-  Apache Fluo (incubating) Recipes for Apache Spark
+  Apache Fluo Recipes for Apache Spark
   
 
   commons-configuration
diff --git a/modules/test/pom.xml b/modules/test/pom.xml
index 3061828..6b181ec 100644
--- a/modules/test/pom.xml
+++ b/modules/test/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-recipes
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-recipes-test
-  Apache Fluo (incubating) Recipes for Testing
+  Apache Fluo Recipes for Testing
   
 
   com.google.guava
diff --git a/pom.xml b/pom.xml
index 7d3ab04..d406c6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,9 +21,9 @@
 1-incubating
   
   fluo-recipes
-  1.2.0-incubating-SNAPSHOT
+  1.2.0-SNAPSHOT
   pom
-  Apache Fluo (incubating) Recipes Parent
+  Apache Fluo Recipes Parent
   Implementation of Common Fluo patterns
   
 

-- 
To stop receiving notification emails like this one, please contact
['"comm...@fluo.apache.org" <comm...@fluo.apache.org>'].


[incubator-fluo] 01/04: Update Notice

2017-07-26 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

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

commit 5f0bbac2fa085c4452b3696e14f706cad162810e
Author: Christopher McTague <cjmcta...@apache.org>
AuthorDate: Wed Jul 26 12:45:24 2017 -0400

Update Notice
---
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE b/NOTICE
index 0cf9769..96a243f 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,4 +1,4 @@
-Apache Fluo (incubating)
+Apache Fluo 
 Copyright 2017 The Apache Software Foundation.
 
 This product includes software developed at

-- 
To stop receiving notification emails like this one, please contact
"comm...@fluo.apache.org" <comm...@fluo.apache.org>.


[incubator-fluo] 03/04: remove incubating from core

2017-07-26 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

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

commit ac0b1bc6722cc45f5616b347764ef2c3294531ed
Author: Christopher McTague <cjmcta...@apache.org>
AuthorDate: Wed Jul 26 15:36:30 2017 -0400

remove incubating from core
---
 modules/core/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index f4ade7a..546ece1 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -22,7 +22,7 @@
 ../../pom.xml
   
   fluo-core
-  Apache Fluo (incubating) Core
+  Apache Fluo Core
   The modules contains the core implementation code of Apache 
Fluo.
   
 

-- 
To stop receiving notification emails like this one, please contact
"comm...@fluo.apache.org" <comm...@fluo.apache.org>.


[incubator-fluo] 02/04: update versions

2017-07-26 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

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

commit 70f43b7023c31d8794abb115010b0055e1cc93b1
Author: Christopher McTague <cjmcta...@apache.org>
AuthorDate: Wed Jul 26 14:42:00 2017 -0400

update versions
---
 DISCLAIMER   | 9 -
 modules/accumulo/pom.xml | 4 ++--
 modules/api/pom.xml  | 4 ++--
 modules/cluster/pom.xml  | 4 ++--
 modules/core/pom.xml | 2 +-
 modules/distribution/pom.xml | 4 ++--
 modules/integration/pom.xml  | 4 ++--
 modules/mapreduce/pom.xml| 4 ++--
 modules/mini/pom.xml | 4 ++--
 pom.xml  | 4 ++--
 10 files changed, 17 insertions(+), 26 deletions(-)

diff --git a/DISCLAIMER b/DISCLAIMER
deleted file mode 100644
index d028686..000
--- a/DISCLAIMER
+++ /dev/null
@@ -1,9 +0,0 @@
-Apache Fluo is an effort undergoing incubation at The Apache Software
-Foundation (ASF), sponsored by Apache Incubator.
-
-Incubation is required of all newly accepted projects until a further review
-indicates that the infrastructure, communications, and decision making process
-have stabilized in a manner consistent with other successful ASF projects.
-While incubation status is not necessarily a reflection of the completeness
-or stability of the code, it does indicate that the project has yet
-to be fully endorsed by the ASF.
diff --git a/modules/accumulo/pom.xml b/modules/accumulo/pom.xml
index 4da36f9..581038d 100644
--- a/modules/accumulo/pom.xml
+++ b/modules/accumulo/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-project
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-accumulo
-  Apache Fluo (incubating) Accumulo Extensions
+  Apache Fluo Accumulo Extensions
   This module contains all Apache Fluo code that is run by 
Accumulo. This includes
 iterators and formatters. Given that this module produces a JAR that needs 
to be included on the
 Accumulo classpath, external dependencies should be limited. Some utility 
classes in this module
diff --git a/modules/api/pom.xml b/modules/api/pom.xml
index 0c85205..40f0297 100644
--- a/modules/api/pom.xml
+++ b/modules/api/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-project
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-api
-  Apache Fluo (incubating) API
+  Apache Fluo API
   This module contains all API code for Apache Fluo. External 
dependencies should be
 limited. Any changes to public methods should be avoided. While the API 
module does not have
 compile time dependency on fluo-core, you must include fluo-core as a 
run-time dependency.
diff --git a/modules/cluster/pom.xml b/modules/cluster/pom.xml
index a379536..efce104 100644
--- a/modules/cluster/pom.xml
+++ b/modules/cluster/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-project
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-cluster
-  Apache Fluo (incubating) Cluster
+  Apache Fluo Cluster
   This module contains all code necessary to run Apache Fluo on a 
YARN cluster using
 Apache Twill. It was separated from fluo-core to keep dependencies (like 
Twill) out of Fluo
 clients which depend on the fluo-core jar.  It was also done to limit 
conflicts. For example,
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 6a068b4..f4ade7a 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-core
diff --git a/modules/distribution/pom.xml b/modules/distribution/pom.xml
index 986f8d8..10b9b0b 100644
--- a/modules/distribution/pom.xml
+++ b/modules/distribution/pom.xml
@@ -18,12 +18,12 @@
   
 org.apache.fluo
 fluo-project
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo
   pom
-  Apache Fluo (incubating) Distribution
+  Apache Fluo Distribution
   This module produces a tarball distribution of Apache Fluo. It 
contains all of the
 default configuration and scripts required for the 
distribution.
   
diff --git a/modules/integration/pom.xml b/modules/integration/pom.xml
index 5063341..e08daa2 100644
--- a/modules/integration/pom.xml
+++ b/modules/integration/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-project
-1.2.0-incubating-SNAPSHOT
+1.2.0-SNAPSHOT
 ../../pom.xml
   
   fluo-integration
-  Apache Fluo (incubating) Integration
+  Apache Fluo Integration
   This module contains Apache Fluo integration tests
   
 
diff --git a/modules/mapreduce/pom.xml b/modules/mapreduce/pom.xml
index a4b641f..617d8c1 100644
--- a/modules/mapreduce/pom.xml
+++ b/modules/mapreduce/pom.xml
@@ -18,11 +18,11 @@
   
 org.apache.fluo
 fluo-project
-1.2.0-incubating-SNAPSHOT
+1.2.0-SN

[incubator-fluo] 04/04: Merge branch 'pr-886'

2017-07-26 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

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

commit b0eef1c364355841dce69ca105328eca393d8d1c
Merge: 2f11089 ac0b1bc
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Wed Jul 26 19:35:33 2017 -0400

Merge branch 'pr-886'

 DISCLAIMER   | 9 -
 NOTICE   | 2 +-
 modules/accumulo/pom.xml | 4 ++--
 modules/api/pom.xml  | 4 ++--
 modules/cluster/pom.xml  | 4 ++--
 modules/core/pom.xml | 4 ++--
 modules/distribution/pom.xml | 4 ++--
 modules/integration/pom.xml  | 4 ++--
 modules/mapreduce/pom.xml| 4 ++--
 modules/mini/pom.xml | 4 ++--
 pom.xml  | 4 ++--
 11 files changed, 19 insertions(+), 28 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
"comm...@fluo.apache.org" <comm...@fluo.apache.org>.


svn commit: r19916 - in /dev/incubator/fluo/fluo/1.1.0-incubating-rc1: MD5SUM SHA1SUM fluo-1.1.0-incubating-bin.tar.gz.md5 fluo-1.1.0-incubating-bin.tar.gz.sha fluo-1.1.0-incubating-source-release.tar

2017-06-07 Thread ctubbsii
Author: ctubbsii
Date: Wed Jun  7 19:43:10 2017
New Revision: 19916

Log:
Update hash files to comply with policy

Use .sha file name extension with SHA512 and .md5 extension with MD5
http://www.apache.org/dev/release-distribution.html#sigs-and-sums

Verify all with:
  md5sum -c <(cat *.md5)
  sha512sum -c <(cat *.sha)

Added:

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.md5

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.sha

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.md5

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.sha
Removed:
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/MD5SUM
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/SHA1SUM

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.md5
==
--- 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.md5
 (added)
+++ 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.md5
 Wed Jun  7 19:43:10 2017
@@ -0,0 +1 @@
+MD5 (fluo-1.1.0-incubating-bin.tar.gz) = d7371cddd17f27c94e4187d716869f6b

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.sha
==
--- 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.sha
 (added)
+++ 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.sha
 Wed Jun  7 19:43:10 2017
@@ -0,0 +1 @@
+SHA512 (fluo-1.1.0-incubating-bin.tar.gz) = 
dbfc2ad781ec8bb17742ab96785773afd32fe73834dfea1abd1ebbba5e83f304bd2de6d4dc569f3da2bf3909a560f213127c4a9345947a75f2d372eaf9dd6ac3

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.md5
==
--- 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.md5
 (added)
+++ 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.md5
 Wed Jun  7 19:43:10 2017
@@ -0,0 +1 @@
+MD5 (fluo-1.1.0-incubating-source-release.tar.gz) = 
a9f3dd62e62fda25839d038809bfd704

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.sha
==
--- 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.sha
 (added)
+++ 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.sha
 Wed Jun  7 19:43:10 2017
@@ -0,0 +1 @@
+SHA512 (fluo-1.1.0-incubating-source-release.tar.gz) = 
804851a2ed3867f2868cfb37769b4f9d95ba478cf254d2fbaa94dc5db6108ef7e36e50774910490b32251521460677cbaf2c145e03a2d3e5d90a63f55162f17f




svn commit: r19904 - in /dev/incubator/fluo/fluo/1.1.0-incubating-rc1: ./ MD5SUM SHA1SUM fluo-1.1.0-incubating-bin.tar.gz fluo-1.1.0-incubating-bin.tar.gz.asc fluo-1.1.0-incubating-source-release.tar.

2017-06-06 Thread ctubbsii
Author: ctubbsii
Date: Tue Jun  6 20:00:01 2017
New Revision: 19904

Log:
Stage fluo-recipes-1.1.0-incubating (rc1) to svn dev area

Added:
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/MD5SUM
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/SHA1SUM

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.asc

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz

dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.asc

Added: dev/incubator/fluo/fluo/1.1.0-incubating-rc1/MD5SUM
==
--- dev/incubator/fluo/fluo/1.1.0-incubating-rc1/MD5SUM (added)
+++ dev/incubator/fluo/fluo/1.1.0-incubating-rc1/MD5SUM Tue Jun  6 20:00:01 2017
@@ -0,0 +1,2 @@
+d7371cddd17f27c94e4187d716869f6b *fluo-1.1.0-incubating-bin.tar.gz
+a9f3dd62e62fda25839d038809bfd704 *fluo-1.1.0-incubating-source-release.tar.gz

Added: dev/incubator/fluo/fluo/1.1.0-incubating-rc1/SHA1SUM
==
--- dev/incubator/fluo/fluo/1.1.0-incubating-rc1/SHA1SUM (added)
+++ dev/incubator/fluo/fluo/1.1.0-incubating-rc1/SHA1SUM Tue Jun  6 20:00:01 
2017
@@ -0,0 +1,2 @@
+4b1499c0967fa658a0797a104d13a954c567f6f1 *fluo-1.1.0-incubating-bin.tar.gz
+f4d2bc6870651ee53754a4c5cf481be08b785344 
*fluo-1.1.0-incubating-source-release.tar.gz

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz
==
Binary files 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz 
(added) and 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz 
Tue Jun  6 20:00:01 2017 differ

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.asc
==
--- 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.asc
 (added)
+++ 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-bin.tar.gz.asc
 Tue Jun  6 20:00:01 2017
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+iQIbBAABAgAGBQJZMZNbAAoJEJqs+1Y1Ks9206cP+NOWUoXYWOpqqO4sDaZxPmPm
+7BkCndonSkYNi1dIUGE/rXrsivB7uT4NBdNBr17hwmeK/vgk1d02nSJLsOOdZEWt
+ktqlzwev9+OZhcvkqusTaxUJvFUBP0me6nSzda5lqYIf/lHgVvdg1MaKoHQRVBAp
+cBrlCMDJW5TxAUTnUKljn2yihI43XdXVYBlxARPZQ7shac6yXJllnwE71IzajmUc
+JuHT5SNkBQMEaXfPiSiVLKxma7d7DZfbXdmnDCf8+V5m4RX93p+1d4Bg12acFOUg
+tJjzUFm8TDHjBAi0c3Dt8SMWktnqjF125Anhq9HenWnT0OiG6rStPyMJAnxLcguY
+s2ueMvDjC59sOQ53blGQrPUtImnKBSaQ5wK7/9Hbn357En/nELJiYFSQoae/K3+b
+yuD+REJtJi36VHd27P9lKKVK0FWJgwl/Ri9DHpSlYgtVssTRpgF6SqtU/C8Xivaf
+6EqCIM0S9oymSORtBbkjf4TivjUvSwK9adiO+rHJyDeXLKHB4p3l7qLru3ULXCjF
+6ED6KQMxNPU9qZARLcdwiB/Rt0hPywQ65+0KYXkGE+H9DW1pFegPkz9AYWn0jfwB
+WLsdvfNueIXSq+FVYmKuRczEFEQJ/P0ht1zKGlDddpmevaHVftX7diDoIt1jrkx4
+h6+VPJYQgfRzUKXya34=
+=/gDj
+-END PGP SIGNATURE-

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz
==
Binary files 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz
 (added) and 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz
 Tue Jun  6 20:00:01 2017 differ

Added: 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.asc
==
--- 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.asc
 (added)
+++ 
dev/incubator/fluo/fluo/1.1.0-incubating-rc1/fluo-1.1.0-incubating-source-release.tar.gz.asc
 Tue Jun  6 20:00:01 2017
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+iQIcBAABAgAGBQJZMZNbAAoJEJqs+1Y1Ks92WckQAIRxSY+tAbhlBpqCu1n7KpWb
+TKGxP/Fsl+25kwfknFDcJPE0GL2iUUzvJoXXdCgZwrbt8hSQkG2hO1xgQcH9WIfq
+sZVCK6CiweoYSPwUvEfByJXNth9VWINijumX3ybOo9fpqtamQSdPkDU+EiAvtA4v
+Zb1A4b9X3CVQLgGoMKPiDPNvHE759sucC+1lVT2TfOOWlR6lX44lOTIbE6o8wzDZ
+wT64R2mHFkr1PNwNbJ8qDkeSNWPc7KmtzUBjtxKq6FLn7BjJKm7+yIAJVx78nbzz
+TvakQgxriVTDtISO8h9QBX4bukjJjB2hK8Ex06Y3L/DWKCpyMYDWKK3YCmeRrrM/
+m0r6gyDZuA7DI+dY/Hy+8/q4Djo/a1HOod7TXlIqD9RqgxDM4eSSPt2kJ5DY9i8q
+yJBUTvI61wSKVL4iVCe7gAejis+8DSeg33tKV/7YlyPMldT8ZkNZPw7OkYmAT+S2
+DX4DUIjX2Un+izF//fzt8X8CNH2ZMFhrl46wPX2vjUnCVedF1C/aRo7ZCpAVvBQF
+OYiMQqRdWgusPkfVTXvrZCgIiSIlKQl3WmQK0QadzIhPxAu2b9ZU2UXwaId/j0ft
+wn8z1tk+yzoUyu19b2xWJIGUOjXSXCDwk92au1cMYLYM/eGJrN1R0cGMt6a3zAFc
+mwFSItXS5NsCt5mMrwkX
+=gsqz
+-END PGP SIGNATURE-




[incubator-fluo] branch test-branch created (now f0403a1)

2017-06-01 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a change to branch test-branch
in repository https://gitbox.apache.org/repos/asf/incubator-fluo.git.

at  f0403a1   Merge branch 'fluo-839'

No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
['"comm...@fluo.apache.org" <comm...@fluo.apache.org>'].


[05/16] incubator-fluo-website git commit: Removed code that should be served from CDN

2016-10-28 Thread ctubbsii
Removed code that should be served from CDN

* Removed Boostrap CSS/JS
* Removed JQuery
* Moved fluo.scss to css dir


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/commit/c678d90f
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/tree/c678d90f
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/diff/c678d90f

Branch: refs/heads/gh-pages
Commit: c678d90f912f6779f2d0dcdc92c1b62e4138e865
Parents: 887634d
Author: Mike Walch 
Authored: Thu Oct 27 16:35:07 2016 -0400
Committer: Mike Walch 
Committed: Fri Oct 28 12:59:40 2016 -0400

--
 _sass/bootstrap-sass/_bootstrap-compass.scss|   7 -
 _sass/bootstrap-sass/_bootstrap-mincer.scss |  17 -
 _sass/bootstrap-sass/_bootstrap-sprockets.scss  |   7 -
 _sass/bootstrap-sass/bootstrap.scss |  50 --
 _sass/bootstrap-sass/bootstrap/_alerts.scss |  68 --
 _sass/bootstrap-sass/bootstrap/_badges.scss |  57 --
 .../bootstrap-sass/bootstrap/_breadcrumbs.scss  |  26 -
 .../bootstrap/_button-groups.scss   | 240 --
 _sass/bootstrap-sass/bootstrap/_buttons.scss| 157 
 _sass/bootstrap-sass/bootstrap/_carousel.scss   | 243 --
 _sass/bootstrap-sass/bootstrap/_close.scss  |  35 -
 _sass/bootstrap-sass/bootstrap/_code.scss   |  68 --
 .../bootstrap/_component-animations.scss|  35 -
 _sass/bootstrap-sass/bootstrap/_dropdowns.scss  | 215 -
 _sass/bootstrap-sass/bootstrap/_forms.scss  | 538 
 _sass/bootstrap-sass/bootstrap/_glyphicons.scss | 237 --
 _sass/bootstrap-sass/bootstrap/_grid.scss   |  84 --
 .../bootstrap-sass/bootstrap/_input-groups.scss | 166 
 _sass/bootstrap-sass/bootstrap/_jumbotron.scss  |  48 --
 _sass/bootstrap-sass/bootstrap/_labels.scss |  66 --
 _sass/bootstrap-sass/bootstrap/_list-group.scss | 131 ---
 _sass/bootstrap-sass/bootstrap/_media.scss  |  56 --
 _sass/bootstrap-sass/bootstrap/_mixins.scss |  39 -
 _sass/bootstrap-sass/bootstrap/_modals.scss | 150 
 _sass/bootstrap-sass/bootstrap/_navbar.scss | 659 --
 _sass/bootstrap-sass/bootstrap/_navs.scss   | 242 --
 _sass/bootstrap-sass/bootstrap/_normalize.scss  | 425 --
 _sass/bootstrap-sass/bootstrap/_pager.scss  |  55 --
 _sass/bootstrap-sass/bootstrap/_pagination.scss |  88 --
 _sass/bootstrap-sass/bootstrap/_panels.scss | 243 --
 _sass/bootstrap-sass/bootstrap/_popovers.scss   | 133 ---
 _sass/bootstrap-sass/bootstrap/_print.scss  | 101 ---
 .../bootstrap/_progress-bars.scss   | 105 ---
 .../bootstrap/_responsive-embed.scss|  34 -
 .../bootstrap/_responsive-utilities.scss| 174 
 .../bootstrap-sass/bootstrap/_scaffolding.scss  | 150 
 _sass/bootstrap-sass/bootstrap/_tables.scss | 233 -
 _sass/bootstrap-sass/bootstrap/_theme.scss  | 258 --
 _sass/bootstrap-sass/bootstrap/_thumbnails.scss |  38 -
 _sass/bootstrap-sass/bootstrap/_tooltip.scss|  95 ---
 _sass/bootstrap-sass/bootstrap/_type.scss   | 304 ---
 _sass/bootstrap-sass/bootstrap/_utilities.scss  |  57 --
 _sass/bootstrap-sass/bootstrap/_variables.scss  | 850 ---
 _sass/bootstrap-sass/bootstrap/_wells.scss  |  29 -
 _sass/bootstrap-sass/bootstrap/bootstrap.scss   |  50 --
 .../bootstrap/mixins/_alerts.scss   |  14 -
 .../bootstrap/mixins/_background-variant.scss   |  11 -
 .../bootstrap/mixins/_border-radius.scss|  18 -
 .../bootstrap/mixins/_buttons.scss  |  50 --
 .../bootstrap/mixins/_center-block.scss |   7 -
 .../bootstrap/mixins/_clearfix.scss |  22 -
 .../bootstrap-sass/bootstrap/mixins/_forms.scss |  84 --
 .../bootstrap/mixins/_gradients.scss|  58 --
 .../bootstrap/mixins/_grid-framework.scss   |  81 --
 .../bootstrap-sass/bootstrap/mixins/_grid.scss  | 122 ---
 .../bootstrap/mixins/_hide-text.scss|  21 -
 .../bootstrap-sass/bootstrap/mixins/_image.scss |  34 -
 .../bootstrap/mixins/_labels.scss   |  12 -
 .../bootstrap/mixins/_list-group.scss   |  31 -
 .../bootstrap/mixins/_nav-divider.scss  |  10 -
 .../bootstrap/mixins/_nav-vertical-align.scss   |   9 -
 .../bootstrap/mixins/_opacity.scss  |   8 -
 .../bootstrap/mixins/_pagination.scss   |  23 -
 .../bootstrap/mixins/_panels.scss   |  24 -
 .../bootstrap/mixins/_progress-bar.scss |  10 -
 .../bootstrap/mixins/_reset-filter.scss |   8 -
 .../bootstrap/mixins/_resize.scss   |   6 -
 .../mixins/_responsive-visibility.scss  |  21 -
 .../bootstrap-sass/bootstrap/mixins/_size.scss  |  10 -
 .../bootstrap/mixins/_tab-focus.scss|   9 -
 .../bootstrap/mixins/_table-row.scss|  28 -
 

[01/16] incubator-fluo-website git commit: Removed code that should be served from CDN

2016-10-28 Thread ctubbsii
Repository: incubator-fluo-website
Updated Branches:
  refs/heads/asf-site f6125fa24 -> a029bb90b
  refs/heads/gh-pages 887634d54 -> 9f43cdb58


http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/c678d90f/javascripts/jquery.min.js
--
diff --git a/javascripts/jquery.min.js b/javascripts/jquery.min.js
deleted file mode 100755
index e5ace11..000
--- a/javascripts/jquery.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | 
jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.1",n=function(a,b){return
 new 
n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return
 
b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return
 d.call(this)},get:function(a){return 
null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var 
b=n.merge(this.constructor(),a);return 
b.prevObject=this,b.context=this.context,b},each:function(a,b){return 
n.each(this,a,b)},map:function(a){return 
this.pushStack(n.map(this,function(b,c){return 
a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(
 this,arguments))},first:function(){return this.eq(0)},last:function(){return 
this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return 
this.pushStack(c>=0&>c?[this[c]]:[])},end:function(){return 
this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var
 
a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof
 g&&(j=g,g=arguments[h]||{},h++),"object"==typeof 
g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b
 in 
a)c=g[b],d=a[b],g!==d&&(j&&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&(c)?c:[]):f=c&(c)?c:{},g[b]=n.extend(j,f,d)):void
 0!==d&&(g[b]=d));return 
g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw
 new 
Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return
 null!=a&===a.window},isNumeric:functi
 
on(a){return!n.isArray(a)&(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var
 b;for(b in a)return!1;return!0},type:function(a){return 
null==a?a+"":"object"==typeof a||"function"==typeof 
a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var 
b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use 
strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return
 a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return 
a.nodeName&()===b.toLowerCase()},each:function(a,b,c){var
 
d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else
 for(e in a)if(d=b.apply(a[e],c),d===!1)break}else 
if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in 
a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){
 return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var 
c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof 
a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return 
null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var 
c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return 
a.length=e,a},grep:function(a,b,c){for(var 
d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&(a[f]);return 
e},map:function(a,b,c){var 
d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&(d);else
 for(f in a)d=b(a[f],f,c),null!=d&(d);return 
e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof 
b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return 
a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void
 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date 
RegExp Object Error".split(" "),function(a,b){h["[object 
"+b+"]"]=b.toLowerCase()});function s(a){var 
 
b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&?!0:"array"===c||0===b||"number"==typeof
 b&>0& in a}var t=function(a){var 
b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new 
Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return 
a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var
 

[03/16] incubator-fluo-website git commit: Removed code that should be served from CDN

2016-10-28 Thread ctubbsii
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/c678d90f/_sass/bootstrap-sass/bootstrap/_variables.scss
--
diff --git a/_sass/bootstrap-sass/bootstrap/_variables.scss 
b/_sass/bootstrap-sass/bootstrap/_variables.scss
deleted file mode 100755
index fe72e84..000
--- a/_sass/bootstrap-sass/bootstrap/_variables.scss
+++ /dev/null
@@ -1,850 +0,0 @@
-// a flag to toggle asset pipeline / compass integration
-// defaults to true if twbs-font-path function is present (no function => 
twbs-font-path('') parsed as string == right side)
-// in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
-$bootstrap-sass-asset-helper: (twbs-font-path("") != 
unquote('twbs-font-path("")')) !default;
-//
-// Variables
-// --
-
-
-//== Colors
-//
-//## Gray and brand colors for use across Bootstrap.
-
-$gray-darker:lighten(#000, 13.5%) !default; // #222
-$gray-dark:  lighten(#000, 20%) !default;   // #333
-$gray:   lighten(#000, 33.5%) !default; // #555
-$gray-light: lighten(#000, 46.7%) !default; // #777
-$gray-lighter:   lighten(#000, 93.5%) !default; // #eee
-
-$brand-primary: #428bca !default;
-$brand-success: #5cb85c !default;
-$brand-info:#5bc0de !default;
-$brand-warning: #f0ad4e !default;
-$brand-danger:  #d9534f !default;
-
-
-//== Scaffolding
-//
-//## Settings for some of the most global styles.
-
-//** Background color for ``.
-$body-bg:   #fff !default;
-//** Global text color on ``.
-$text-color:$gray-dark !default;
-
-//** Global textual link color.
-$link-color:$brand-primary !default;
-//** Link hover color set via `darken()` function.
-$link-hover-color:  darken($link-color, 15%) !default;
-
-
-//== Typography
-//
-//## Font, line-height, and color for body text, headings, and more.
-
-$font-family-sans-serif:  "Helvetica Neue", Helvetica, Arial, sans-serif 
!default;
-$font-family-serif:   Georgia, "Times New Roman", Times, serif !default;
-//** Default monospace fonts for ``, ``, and ``.
-$font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace 
!default;
-$font-family-base:$font-family-sans-serif !default;
-
-$font-size-base:  14px !default;
-$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
-$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
-
-$font-size-h1:floor(($font-size-base * 2.6)) !default; // ~36px
-$font-size-h2:floor(($font-size-base * 2.15)) !default; // ~30px
-$font-size-h3:ceil(($font-size-base * 1.7)) !default; // ~24px
-$font-size-h4:ceil(($font-size-base * 1.25)) !default; // ~18px
-$font-size-h5:$font-size-base !default;
-$font-size-h6:ceil(($font-size-base * 0.85)) !default; // ~12px
-
-//** Unit-less `line-height` for use in components like buttons.
-$line-height-base:1.428571429 !default; // 20/14
-//** Computed "line-height" (`font-size` * `line-height`) for use with 
`margin`, `padding`, etc.
-$line-height-computed:floor(($font-size-base * $line-height-base)) 
!default; // ~20px
-
-//** By default, this inherits from the ``.
-$headings-font-family:inherit !default;
-$headings-font-weight:500 !default;
-$headings-line-height:1.1 !default;
-$headings-color:  inherit !default;
-
-
-//== Iconography
-//
-//## Specify custom location and filename of the included Glyphicons icon 
font. Useful for those including Bootstrap via Bower.
-
-//** Load fonts from this directory.
-$icon-font-path: "bootstrap/" !default;
-//** File name for all font files.
-$icon-font-name:  "glyphicons-halflings-regular" !default;
-//** Element ID within SVG icon file.
-$icon-font-svg-id:"glyphicons_halflingsregular" !default;
-
-
-//== Components
-//
-//## Define common padding and border radius sizes and more. Values based on 
14px text and 1.428 line-height (~20px to start).
-
-$padding-base-vertical: 6px !default;
-$padding-base-horizontal:   12px !default;
-
-$padding-large-vertical:10px !default;
-$padding-large-horizontal:  16px !default;
-
-$padding-small-vertical:5px !default;
-$padding-small-horizontal:  10px !default;
-
-$padding-xs-vertical:   1px !default;
-$padding-xs-horizontal: 5px !default;
-
-$line-height-large: 1.33 !default;
-$line-height-small: 1.5 !default;
-
-$border-radius-base:4px !default;
-$border-radius-large:   6px !default;
-$border-radius-small:   3px !default;
-
-//** Global color for active items (e.g., navs or dropdowns).
-$component-active-color:#fff !default;
-//** Global background color for active items (e.g., navs or dropdowns).
-$component-active-bg:   $brand-primary !default;
-
-//** Width of the `border` for 

[06/16] incubator-fluo-website git commit: Update site to use Bootswatch Cosmo Theme

2016-10-28 Thread ctubbsii
Update site to use Bootswatch Cosmo Theme

* Switched using Fluo logo for dark backgrounds
* Added bootwatch to powered by
* Moved GitHub button to jumbotron and added download button
* Updated news archive


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/commit/b33e5ce9
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/tree/b33e5ce9
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/diff/b33e5ce9

Branch: refs/heads/gh-pages
Commit: b33e5ce93521d9e381c46d83dd2f07d8ece3aaee
Parents: c678d90
Author: Mike Walch 
Authored: Thu Oct 27 20:25:10 2016 -0400
Committer: Mike Walch 
Committed: Fri Oct 28 13:26:23 2016 -0400

--
 _layouts/default.html|  28 +++
 _sass/pygments-tomorrow.scss |   2 +-
 css/fluo.scss| 165 --
 index.html   | 120 +--
 pages/news.html  |  20 +++--
 pages/poweredby.md   |   4 +-
 resources/fluo-logo-dark.png | Bin 0 -> 3656 bytes
 7 files changed, 99 insertions(+), 240 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b33e5ce9/_layouts/default.html
--
diff --git a/_layouts/default.html b/_layouts/default.html
index e93b90a..8779359 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -4,20 +4,21 @@
 
 
 
-
-https://fonts.googleapis.com/css?family=Montserrat:700,400;>
-https://fonts.googleapis.com/css?family=Merriweather;>
-https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css;
 >
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/cosmo/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-h21C2fcDk/eFsW9sC9h0dhokq5pDinLNklTKoxIZRUn3+hvmgQSffLLQ4G4l2eEr"
 crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css;
 rel="stylesheet" 
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
 crossorigin="anonymous">
+
 
 
+
 {% if page.title %}{% if page.html_title_override %}{{ page.title 
}}{% else %}{{ page.title }} | Apache Fluo{% endif %}{% else %} Apache Fluo {% 
endif %}
-
+
+https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js";>
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+{% include scripts.html %}
   
-  
-
+  
+
   
 
   
@@ -27,7 +28,7 @@
   
 
   
-  
+  
 
 
   
@@ -68,7 +69,7 @@
   
 
   
-
+
 
   
   
@@ -85,8 +86,5 @@
 
   
 
-
-
-{% include scripts.html %}
   
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b33e5ce9/_sass/pygments-tomorrow.scss
--
diff --git a/_sass/pygments-tomorrow.scss b/_sass/pygments-tomorrow.scss
index bbd1594..b46ecbc 100755
--- a/_sass/pygments-tomorrow.scss
+++ b/_sass/pygments-tomorrow.scss
@@ -1,5 +1,5 @@
 .highlight .hll { background-color: #d6d6d6 }
-.highlight  { background: #ff; color: #4d4d4c }
+.highlight  { background: #f5f5f5; color: #4d4d4c }
 .highlight .c { color: #8e908c } /* Comment */
 .highlight .err { color: #c82829 } /* Error */
 .highlight .k { color: #8959a8 } /* Keyword */

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b33e5ce9/css/fluo.scss
--
diff --git a/css/fluo.scss b/css/fluo.scss
index dff113d..679bb8c 100644
--- a/css/fluo.scss
+++ b/css/fluo.scss
@@ -1,69 +1,5 @@
 ---
 ---
-$container-large-desktop: 970px;
-
-$font-family-base: "Merriweather", "Helvetica Neue", Arial, sans-serif;
-$headings-font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
-$headings-font-weight: 700;
-
-$table-font-family: "Helvetica", Arial, sans-serif;
-
-$font-size-base: 14px;
-$font-size-h1: floor(($font-size-base * 2));
-$font-size-h2: floor(($font-size-base * 1.4));
-$font-size-h3: floor(($font-size-base * 1));
-$font-size-h4: floor(($font-size-base * 1.1));
-$font-size-h5: floor(($font-size-base * 1));
-$font-size-h6: floor(($font-size-base * 1));
-$blockquote-font-size: floor(($font-size-base * 1.25));
-$line-height-base: 1;
-$headings-line-height: 1;
-
-$navbar-default-bg: #fff;
-$navbar-default-border: #fff;
-$navbar-default-brand-color: #333;
-$navbar-height: 60px;
-$navbar-inverse-link-color: #fff;

[10/16] incubator-fluo-website git commit: Jekyll build from gh-pages:9f43cdb

2016-10-28 Thread ctubbsii
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/a029bb90/stylesheets/fluo.css
--
diff --git a/stylesheets/fluo.css b/stylesheets/fluo.css
deleted file mode 100644
index 7257027..000
--- a/stylesheets/fluo.css
+++ /dev/null
@@ -1,2256 +0,0 @@
-@charset "UTF-8";
-/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
-html { font-family: sans-serif; -ms-text-size-adjust: 100%; 
-webkit-text-size-adjust: 100%; }
-
-body { margin: 0; }
-
-article, aside, details, figcaption, figure, footer, header, hgroup, main, 
nav, section, summary { display: block; }
-
-audio, canvas, progress, video { display: inline-block; vertical-align: 
baseline; }
-
-audio:not([controls]) { display: none; height: 0; }
-
-[hidden], template { display: none; }
-
-a { background: transparent; }
-
-a:active, a:hover { outline: 0; }
-
-abbr[title] { border-bottom: 1px dotted; }
-
-b, strong { font-weight: bold; }
-
-dfn { font-style: italic; }
-
-h1 { font-size: 2em; margin: 0.67em 0; }
-
-mark { background: #ff0; color: #000; }
-
-small { font-size: 80%; }
-
-sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: 
baseline; }
-
-sup { top: -0.5em; }
-
-sub { bottom: -0.25em; }
-
-img { border: 0; }
-
-svg:not(:root) { overflow: hidden; }
-
-figure { margin: 1em 40px; }
-
-hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
-
-pre { overflow: auto; }
-
-code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; }
-
-button, input, optgroup, select, textarea { color: inherit; font: inherit; 
margin: 0; }
-
-button { overflow: visible; }
-
-button, select { text-transform: none; }
-
-button, html input[type="button"], input[type="reset"], input[type="submit"] { 
-webkit-appearance: button; cursor: pointer; }
-
-button[disabled], html input[disabled] { cursor: default; }
-
-button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
-
-input { line-height: normal; }
-
-input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 
0; }
-
-input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { height: auto; }
-
-input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: 
content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
-
-input[type="search"]::-webkit-search-cancel-button, 
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
-
-fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 
0.75em; }
-
-legend { border: 0; padding: 0; }
-
-textarea { overflow: auto; }
-
-optgroup { font-weight: bold; }
-
-table { border-collapse: collapse; border-spacing: 0; }
-
-td, th { padding: 0; }
-
-@media print { * { text-shadow: none !important; color: #000 !important; 
background: transparent !important; box-shadow: none !important; }
-  a, a:visited { text-decoration: underline; }
-  a[href]:after { content: " (" attr(href) ")"; }
-  abbr[title]:after { content: " (" attr(title) ")"; }
-  a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
-  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
-  thead { display: table-header-group; }
-  tr, img { page-break-inside: avoid; }
-  img { max-width: 100% !important; }
-  p, h2, h3 { orphans: 3; widows: 3; }
-  h2, h3 { page-break-after: avoid; }
-  select { background: #fff !important; }
-  .navbar { display: none; }
-  .table td, .post-content table td, .post-excerpt-home table td, .post-nav 
table td, .table th, .post-content table th, .post-excerpt-home table th, 
.post-nav table th { background-color: #fff !important; }
-  .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; }
-  .label { border: 1px solid #000; }
-  .table, .post-content table, .post-excerpt-home table, .post-nav table { 
border-collapse: collapse !important; }
-  .table-bordered th, .post-content table th, .post-excerpt-home table th, 
.post-nav table th, .table-bordered td, .post-content table td, 
.post-excerpt-home table td, .post-nav table td { border: 1px solid #ddd 
!important; } }
-@font-face { font-family: 'Glyphicons Halflings'; src: 
url("bootstrap/glyphicons-halflings-regular.eot"); src: 
url("bootstrap/glyphicons-halflings-regular.eot?#iefix") 
format("embedded-opentype"), url("bootstrap/glyphicons-halflings-regular.woff") 
format("woff"), url("bootstrap/glyphicons-halflings-regular.ttf") 
format("truetype"), 
url("bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") 
format("svg"); }
-.glyphicon { position: relative; top: 1px; display: inline-block; font-family: 
'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 
1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
-
-.glyphicon-asterisk:before { content: "\2a"; }
-
-.glyphicon-plus:before { content: "\2b"; }
-
-.glyphicon-euro:before { 

[13/16] incubator-fluo-website git commit: Jekyll build from gh-pages:9f43cdb

2016-10-28 Thread ctubbsii
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/a029bb90/docs/fluo/1.0.0-incubating/contributing/index.html
--
diff --git a/docs/fluo/1.0.0-incubating/contributing/index.html 
b/docs/fluo/1.0.0-incubating/contributing/index.html
index b8ff30e..152d382 100644
--- a/docs/fluo/1.0.0-incubating/contributing/index.html
+++ b/docs/fluo/1.0.0-incubating/contributing/index.html
@@ -4,20 +4,34 @@
 
 
 
-
-https://fonts.googleapis.com/css?family=Montserrat:700,400;>
-https://fonts.googleapis.com/css?family=Merriweather;>
-https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css;
 >
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/cosmo/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-h21C2fcDk/eFsW9sC9h0dhokq5pDinLNklTKoxIZRUn3+hvmgQSffLLQ4G4l2eEr"
 crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css;
 rel="stylesheet" 
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
 crossorigin="anonymous">
+
 https://fluo.apache.org//docs/fluo/1.0.0-incubating/contributing/;>
 
+
 Contributing to Fluo | Apache Fluo
-
+
+https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js";>
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+
+
+
+
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
+  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+
+  ga('create', 'UA-55360307-1', 'auto');
+  ga('send', 'pageview');
+
+
+
   
-  
-
+  
+
   
 
   
@@ -27,7 +41,7 @@
   
 
   
-  
+  
 
 
   
@@ -68,7 +82,7 @@
   
 
   
-
+
 
   
   
@@ -127,21 +141,5 @@ mvn package
 
   
 
-
-
-
-
-
-
-  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
-  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-  ga('create', 'UA-55360307-1', 'auto');
-  ga('send', 'pageview');
-
-
-
   
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/a029bb90/docs/fluo/1.0.0-incubating/grafana/index.html
--
diff --git a/docs/fluo/1.0.0-incubating/grafana/index.html 
b/docs/fluo/1.0.0-incubating/grafana/index.html
index 57c1efd..e1c5087 100644
--- a/docs/fluo/1.0.0-incubating/grafana/index.html
+++ b/docs/fluo/1.0.0-incubating/grafana/index.html
@@ -4,20 +4,34 @@
 
 
 
-
-https://fonts.googleapis.com/css?family=Montserrat:700,400;>
-https://fonts.googleapis.com/css?family=Merriweather;>
-https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css;
 >
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/cosmo/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-h21C2fcDk/eFsW9sC9h0dhokq5pDinLNklTKoxIZRUn3+hvmgQSffLLQ4G4l2eEr"
 crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css;
 rel="stylesheet" 
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
 crossorigin="anonymous">
+
 https://fluo.apache.org//docs/fluo/1.0.0-incubating/grafana/;>
 
+
 Fluo metrics in Grafana/InfluxDB | Apache Fluo
-
+
+https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js";>
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+
+
+
+
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
+  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+
+  ga('create', 'UA-55360307-1', 'auto');
+  ga('send', 'pageview');
+
+
+
   
-  
-
+  
+
   
 
   
@@ -27,7 +41,7 @@
   

[11/16] incubator-fluo-website git commit: Jekyll build from gh-pages:9f43cdb

2016-10-28 Thread ctubbsii
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/a029bb90/news/index.html
--
diff --git a/news/index.html b/news/index.html
index 17b0e4c..f484f39 100644
--- a/news/index.html
+++ b/news/index.html
@@ -4,20 +4,34 @@
 
 
 
-
-https://fonts.googleapis.com/css?family=Montserrat:700,400;>
-https://fonts.googleapis.com/css?family=Merriweather;>
-https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css;
 >
+
+https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/cosmo/bootstrap.min.css; 
rel="stylesheet" 
integrity="sha384-h21C2fcDk/eFsW9sC9h0dhokq5pDinLNklTKoxIZRUn3+hvmgQSffLLQ4G4l2eEr"
 crossorigin="anonymous">
+https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css;
 rel="stylesheet" 
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
 crossorigin="anonymous">
+
 https://fluo.apache.org//news/;>
 
+
 News Archive | Apache Fluo
-
+
+https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js";>
+https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"; 
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
 crossorigin="anonymous">
+
+
+
+
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
+  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+
+  ga('create', 'UA-55360307-1', 'auto');
+  ga('send', 'pageview');
+
+
+
   
-  
-
+  
+
   
 
   
@@ -27,7 +41,7 @@
   
 
   
-  
+  
 
 
   
@@ -68,99 +82,126 @@
   
 
   
-
+
 
   
   
-
-  News Archive
+News Archive
+
 
   
   
   
-  October 2016
+
+2016
   
-  Apache Fluo Recipes 1.0.0-incubating released 
28 Oct 2016
+  
+Oct 28
+Apache Fluo Recipes 1.0.0-incubating 
released
+  
 
   
   
   
-  Apache Fluo 1.0.0-incubating released 14 Oct 2016
+  
+Oct 14
+Apache Fluo 1.0.0-incubating released
+  
 
   
   
   
-  June 2016
-  
-  Fluo is moving to Apache 02 Jun 2016
+  
+Jun 02
+Fluo 
is moving to Apache
+  
 
   
   
   
-  May 2016
-  
-  Running Webindex for 3 days on EC2 Again 17 May 2016
+  
+May 17
+Running Webindex for 3 days on EC2 Again
+  
 
   
   
   
-  March 2016
-  
-  Fluo Recipes 1.0.0-beta-2 released 29 Mar 2016
+  
+Mar 29
+Fluo Recipes 1.0.0-beta-2 released
+  
 
   
   
   
-  January 2016
-  
-  Fluo Recipes 1.0.0-beta-1 released 13 Jan 2016
+  
+Jan 13
+Fluo Recipes 1.0.0-beta-1 released
+  
 
   
   
   
-  Fluo 
1.0.0-beta-2 released 12 Jan 2016
+  
+Jan 12
+Fluo 1.0.0-beta-2 released
+  
 
   
   
   
-  Running Webindex for 3 days on EC2 11 Jan 2016
+  
+Jan 11
+Running Webindex for 3 days on EC2
+  
 
   
   
   
-  December 2015
+
+2015
   
-  Beta 2 pre-release stress test 22 Dec 2015
+  
+Dec 22
+Beta 2 pre-release stress test
+  
 
   
   
   
-  June 2015
-  
-  Fluo 
1.0.0-beta-1 released 09 Jun 2015
+  
+Jun 09
+Fluo 1.0.0-beta-1 released
+  
 
   
   
   
-  May 2015
-  
-  Fluo talk at Accumulo Summit 22 May 2015
+  
+May 22
+Fluo talk at Accumulo Summit
+  
 
   
   
   
-  December 2014
+
+2014
   
-  First long stress test run on Fluo 30 Dec 2014
+  
+Dec 30
+First long stress test run on Fluo
+  
 
   
   
   
-  October 2014
-  
-  Fluo 
1.0.0-alpha-1 released 02 Oct 2014
+  
+Oct 02
+Fluo 1.0.0-alpha-1 released
+  
 
-
 
   
   
@@ -174,21 +215,5 @@
 
   
 
-
-
-
-
-
-
-  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
-  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-  ga('create', 'UA-55360307-1', 'auto');
-  ga('send', 'pageview');
-
-
-
   
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/a029bb90/people/index.html
--
diff --git a/people/index.html b/people/index.html
index 9e1665a..1da1343 100644
--- a/people/index.html
+++ b/people/index.html
@@ -4,20 +4,34 @@
 
 
 
-
-https://fonts.googleapis.com/css?family=Montserrat:700,400;>
-

[16/16] incubator-fluo-website git commit: Jekyll build from gh-pages:9f43cdb

2016-10-28 Thread ctubbsii
Jekyll build from gh-pages:9f43cdb

Made font-size 16px


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/commit/a029bb90
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/tree/a029bb90
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/diff/a029bb90

Branch: refs/heads/asf-site
Commit: a029bb90b2694d83fe864e97f298cc840ed57867
Parents: f6125fa
Author: Christopher Tubbs 
Authored: Fri Oct 28 15:43:55 2016 -0400
Committer: Christopher Tubbs 
Committed: Fri Oct 28 15:43:55 2016 -0400

--
 404.html|   54 +-
 api/archive/index.html  |   54 +-
 api/index.html  |   54 +-
 blog/2014/12/30/stress-test-long-run/index.html |   54 +-
 .../22/fluo-talk-at-accumulo-summit/index.html  |   54 +-
 .../beta-2-pre-release-stress-test/index.html   |   54 +-
 blog/2016/01/11/webindex-long-run/index.html|   54 +-
 blog/2016/05/17/webindex-long-run-2/index.html  |   54 +-
 .../2016/06/02/fluo-moving-to-apache/index.html |   54 +-
 css/fluo.css|  228 ++
 docs/archive/index.html |   54 +-
 docs/fluo-recipes/1.0.0-beta-1/cfm/index.html   |   54 +-
 .../1.0.0-beta-1/export-queue/index.html|   54 +-
 docs/fluo-recipes/1.0.0-beta-1/index.html   |   54 +-
 .../1.0.0-beta-1/recording-tx/index.html|   54 +-
 .../1.0.0-beta-1/serialization/index.html   |   54 +-
 .../1.0.0-beta-1/table-optimization/index.html  |   54 +-
 .../1.0.0-beta-1/transient/index.html   |   54 +-
 .../1.0.0-beta-2/accumulo-export/index.html |   54 +-
 docs/fluo-recipes/1.0.0-beta-2/cfm/index.html   |   54 +-
 .../1.0.0-beta-2/export-queue/index.html|   54 +-
 docs/fluo-recipes/1.0.0-beta-2/index.html   |   54 +-
 .../1.0.0-beta-2/recording-tx/index.html|   54 +-
 .../1.0.0-beta-2/row-hasher/index.html  |   54 +-
 .../1.0.0-beta-2/serialization/index.html   |   54 +-
 .../1.0.0-beta-2/table-optimization/index.html  |   54 +-
 .../1.0.0-beta-2/testing/index.html |   54 +-
 .../1.0.0-beta-2/transient/index.html   |   54 +-
 .../accumulo-export-queue/index.html|   54 +-
 .../1.0.0-incubating/cfm/index.html |   54 +-
 .../1.0.0-incubating/export-queue/index.html|   54 +-
 docs/fluo-recipes/1.0.0-incubating/index.html   |   54 +-
 .../1.0.0-incubating/recording-tx/index.html|   54 +-
 .../1.0.0-incubating/row-hasher/index.html  |   54 +-
 .../1.0.0-incubating/serialization/index.html   |   54 +-
 .../table-optimization/index.html   |   54 +-
 .../1.0.0-incubating/testing/index.html |   54 +-
 .../1.0.0-incubating/transient/index.html   |   54 +-
 docs/fluo/1.0.0-alpha-1/index.html  |   54 +-
 docs/fluo/1.0.0-alpha-1/stress/index.html   |   54 +-
 docs/fluo/1.0.0-beta-1/applications/index.html  |   54 +-
 docs/fluo/1.0.0-beta-1/architecture/index.html  |   54 +-
 docs/fluo/1.0.0-beta-1/contributing/index.html  |   54 +-
 docs/fluo/1.0.0-beta-1/index.html   |   54 +-
 docs/fluo/1.0.0-beta-1/metrics/index.html   |   54 +-
 .../1.0.0-beta-1/mini-fluo-setup/index.html |   54 +-
 .../1.0.0-beta-1/prod-fluo-setup/index.html |   54 +-
 docs/fluo/1.0.0-beta-2/applications/index.html  |   54 +-
 docs/fluo/1.0.0-beta-2/architecture/index.html  |   54 +-
 docs/fluo/1.0.0-beta-2/contributing/index.html  |   54 +-
 docs/fluo/1.0.0-beta-2/grafana/index.html   |   54 +-
 docs/fluo/1.0.0-beta-2/index.html   |   54 +-
 docs/fluo/1.0.0-beta-2/metrics/index.html   |   54 +-
 .../1.0.0-beta-2/mini-fluo-setup/index.html |   54 +-
 .../1.0.0-beta-2/prod-fluo-setup/index.html |   54 +-
 .../1.0.0-incubating/applications/index.html|   54 +-
 .../1.0.0-incubating/architecture/index.html|   54 +-
 .../1.0.0-incubating/contributing/index.html|   54 +-
 docs/fluo/1.0.0-incubating/grafana/index.html   |   54 +-
 docs/fluo/1.0.0-incubating/index.html   |   54 +-
 docs/fluo/1.0.0-incubating/install/index.html   |   54 +-
 docs/fluo/1.0.0-incubating/metrics/index.html   |   54 +-
 docs/index.html |   54 +-
 feed.xml|4 +-
 getinvolved/index.html  |   54 +-
 how-to-contribute/index.html|   54 +-
 index.html  |  222 +-
 javascripts/bootstrap.min.js|6 -
 javascripts/jquery.min.js   |4 -
 news/index.html |  147 +-
 people/index.html   |   54 +-
 poweredby/index.html|   56 +-
 

svn commit: r16661 - /dev/incubator/fluo/fluo-recipes/.gitignore

2016-10-24 Thread ctubbsii
Author: ctubbsii
Date: Mon Oct 24 20:18:54 2016
New Revision: 16661

Log:
Add .gitignore file to fluo-recipes for git-svn

Added:
dev/incubator/fluo/fluo-recipes/.gitignore

Added: dev/incubator/fluo/fluo-recipes/.gitignore
==
--- dev/incubator/fluo/fluo-recipes/.gitignore (added)
+++ dev/incubator/fluo/fluo-recipes/.gitignore Mon Oct 24 20:18:54 2016
@@ -0,0 +1 @@
+# preserve directory, even if empty, for git-svn




incubator-fluo-recipes git commit: Fix small compiler warning in IT

2016-10-20 Thread ctubbsii
Repository: incubator-fluo-recipes
Updated Branches:
  refs/heads/master 5279878bc -> e1d0aa796


Fix small compiler warning in IT

Make use of resource inside of try-with-resources block by ensuring it's
not null.


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/commit/e1d0aa79
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/tree/e1d0aa79
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/diff/e1d0aa79

Branch: refs/heads/master
Commit: e1d0aa7964dcd441361a537a6595c773b42b8cfb
Parents: 5279878
Author: Christopher Tubbs 
Authored: Thu Oct 20 18:04:12 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Oct 20 18:04:12 2016 -0400

--
 .../java/org/apache/fluo/recipes/spark/it/FluoSparkHelperIT.java| 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo-recipes/blob/e1d0aa79/modules/spark/src/test/java/org/apache/fluo/recipes/spark/it/FluoSparkHelperIT.java
--
diff --git 
a/modules/spark/src/test/java/org/apache/fluo/recipes/spark/it/FluoSparkHelperIT.java
 
b/modules/spark/src/test/java/org/apache/fluo/recipes/spark/it/FluoSparkHelperIT.java
index c2d512d..018e9f4 100644
--- 
a/modules/spark/src/test/java/org/apache/fluo/recipes/spark/it/FluoSparkHelperIT.java
+++ 
b/modules/spark/src/test/java/org/apache/fluo/recipes/spark/it/FluoSparkHelperIT.java
@@ -75,6 +75,7 @@ public class FluoSparkHelperIT extends AccumuloExportITBase {
 new FluoSparkHelper.BulkImportOptions());
 
 try (MiniFluo miniFluo = FluoFactory.newMiniFluo(getFluoConfiguration())) {
+  Assert.assertNotNull(miniFluo);
   Assert.assertTrue(FluoITHelper.verifyFluoTable(getFluoConfiguration(), 
expected));
 
   List actualRead = 
FluoSparkHelper.toRcvRDD(fsh.readFromFluo(ctx)).collect();



[incubator-fluo-recipes] Git Push Summary [forced push!] [Forced Update!]

2016-10-18 Thread ctubbsii
Repository: incubator-fluo-recipes
Updated Branches:
  refs/heads/1.0.0-incubating-rc0 8297b4167 -> 2eb367e17 (forced update)


[incubator-fluo-recipes] Git Push Summary

2016-10-18 Thread ctubbsii
Repository: incubator-fluo-recipes
Updated Branches:
  refs/heads/1.0.0-incubating-rc0-next [created] 8297b4167


svn commit: r16377 - /release/incubator/fluo/fluo/

2016-10-05 Thread ctubbsii
Author: ctubbsii
Date: Wed Oct  5 20:18:08 2016
New Revision: 16377

Log:
Create sub-directory for Apache Fluo main artifact releases

Added:
release/incubator/fluo/fluo/



incubator-fluo git commit: [maven-release-plugin] prepare for next development iteration

2016-09-27 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/1.0.0-incubating-rc2 [created] e1dbc608c
  refs/heads/1.0.0-incubating-rc2-next [created] 2f9d3ee2d


[maven-release-plugin] prepare for next development iteration


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

Branch: refs/heads/1.0.0-incubating-rc2-next
Commit: 2f9d3ee2dff2984434cdd8b87afaabcdbffcd2d3
Parents: e1dbc60
Author: Christopher Tubbs 
Authored: Tue Sep 27 16:34:43 2016 -0400
Committer: Christopher Tubbs 
Committed: Tue Sep 27 16:34:43 2016 -0400

--
 modules/accumulo/pom.xml | 2 +-
 modules/api/pom.xml  | 2 +-
 modules/cluster/pom.xml  | 2 +-
 modules/core/pom.xml | 2 +-
 modules/distribution/pom.xml | 2 +-
 modules/integration/pom.xml  | 2 +-
 modules/mapreduce/pom.xml| 2 +-
 modules/mini/pom.xml | 2 +-
 pom.xml  | 4 ++--
 9 files changed, 10 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/accumulo/pom.xml
--
diff --git a/modules/accumulo/pom.xml b/modules/accumulo/pom.xml
index 9be994e..4fbaa69 100644
--- a/modules/accumulo/pom.xml
+++ b/modules/accumulo/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-accumulo

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/api/pom.xml
--
diff --git a/modules/api/pom.xml b/modules/api/pom.xml
index f5fd137..050b04d 100644
--- a/modules/api/pom.xml
+++ b/modules/api/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-api

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/cluster/pom.xml
--
diff --git a/modules/cluster/pom.xml b/modules/cluster/pom.xml
index b3ace7a..9c792be 100644
--- a/modules/cluster/pom.xml
+++ b/modules/cluster/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-cluster

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/core/pom.xml
--
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 2282263..be7374c 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-core

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/distribution/pom.xml
--
diff --git a/modules/distribution/pom.xml b/modules/distribution/pom.xml
index 79cef42..27a0f0b 100644
--- a/modules/distribution/pom.xml
+++ b/modules/distribution/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/integration/pom.xml
--
diff --git a/modules/integration/pom.xml b/modules/integration/pom.xml
index 3039bfa..5ff5842 100644
--- a/modules/integration/pom.xml
+++ b/modules/integration/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-integration

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/mapreduce/pom.xml
--
diff --git a/modules/mapreduce/pom.xml b/modules/mapreduce/pom.xml
index 1cd5bc1..ec147ca 100644
--- a/modules/mapreduce/pom.xml
+++ b/modules/mapreduce/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-mapreduce

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/modules/mini/pom.xml
--
diff --git a/modules/mini/pom.xml b/modules/mini/pom.xml
index 6c93cc3..5032815 100644
--- a/modules/mini/pom.xml
+++ b/modules/mini/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo

incubator-fluo git commit: Add incubating parenthetical to NOTICE

2016-09-27 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/master 581b4dd50 -> c1b4def7e


Add incubating parenthetical to NOTICE


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

Branch: refs/heads/master
Commit: c1b4def7e7308badc42c471ac2b0ebc2ccab5b36
Parents: 581b4dd
Author: Christopher Tubbs 
Authored: Tue Sep 27 16:14:54 2016 -0400
Committer: Christopher Tubbs 
Committed: Tue Sep 27 16:14:54 2016 -0400

--
 NOTICE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/c1b4def7/NOTICE
--
diff --git a/NOTICE b/NOTICE
index dab393a..dc56948 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,4 +1,4 @@
-Apache Fluo
+Apache Fluo (incubating)
 Copyright 2016 The Apache Software Foundation.
 
 This product includes software developed at



incubator-fluo git commit: [maven-release-plugin] prepare for next development iteration

2016-09-20 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/1.0.0-incubating-rc1 [created] b07fbf8b7
  refs/heads/1.0.0-incubating-rc1-next [created] a19793e3f


[maven-release-plugin] prepare for next development iteration


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

Branch: refs/heads/1.0.0-incubating-rc1-next
Commit: a19793e3f2d5bceebd6d3218a250ea85b89ac6e0
Parents: b07fbf8
Author: Christopher Tubbs 
Authored: Tue Sep 20 19:02:06 2016 -0400
Committer: Christopher Tubbs 
Committed: Tue Sep 20 19:02:06 2016 -0400

--
 modules/accumulo/pom.xml | 2 +-
 modules/api/pom.xml  | 2 +-
 modules/cluster/pom.xml  | 2 +-
 modules/core/pom.xml | 2 +-
 modules/distribution/pom.xml | 2 +-
 modules/integration/pom.xml  | 2 +-
 modules/mapreduce/pom.xml| 2 +-
 modules/mini/pom.xml | 2 +-
 pom.xml  | 4 ++--
 9 files changed, 10 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/accumulo/pom.xml
--
diff --git a/modules/accumulo/pom.xml b/modules/accumulo/pom.xml
index 9be994e..4fbaa69 100644
--- a/modules/accumulo/pom.xml
+++ b/modules/accumulo/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-accumulo

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/api/pom.xml
--
diff --git a/modules/api/pom.xml b/modules/api/pom.xml
index f5fd137..050b04d 100644
--- a/modules/api/pom.xml
+++ b/modules/api/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-api

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/cluster/pom.xml
--
diff --git a/modules/cluster/pom.xml b/modules/cluster/pom.xml
index b3ace7a..9c792be 100644
--- a/modules/cluster/pom.xml
+++ b/modules/cluster/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-cluster

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/core/pom.xml
--
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 2282263..be7374c 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-core

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/distribution/pom.xml
--
diff --git a/modules/distribution/pom.xml b/modules/distribution/pom.xml
index 7299481..7080b95 100644
--- a/modules/distribution/pom.xml
+++ b/modules/distribution/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/integration/pom.xml
--
diff --git a/modules/integration/pom.xml b/modules/integration/pom.xml
index 3039bfa..5ff5842 100644
--- a/modules/integration/pom.xml
+++ b/modules/integration/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-integration

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/mapreduce/pom.xml
--
diff --git a/modules/mapreduce/pom.xml b/modules/mapreduce/pom.xml
index 1cd5bc1..ec147ca 100644
--- a/modules/mapreduce/pom.xml
+++ b/modules/mapreduce/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-mapreduce

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a19793e3/modules/mini/pom.xml
--
diff --git a/modules/mini/pom.xml b/modules/mini/pom.xml
index 6c93cc3..5032815 100644
--- a/modules/mini/pom.xml
+++ b/modules/mini/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo

[4/6] incubator-fluo git commit: [maven-release-plugin] prepare for next development iteration

2016-08-11 Thread ctubbsii
[maven-release-plugin] prepare for next development iteration


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

Branch: refs/heads/fluo-parent
Commit: a2855c495a6360972b8024712db290d853d42c71
Parents: 95c48e3
Author: Christopher Tubbs 
Authored: Thu Aug 4 15:22:55 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 15:22:55 2016 -0400

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a2855c49/pom.xml
--
diff --git a/pom.xml b/pom.xml
index b95bad9..8af9054 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
   org.apache.fluo
   fluo-parent
-  1-incubating
+  2-incubating-SNAPSHOT
   pom
   Apache Fluo Parent POM (incubating)
   Parent pom for common configuration across Apache Fluo 
projects
@@ -68,7 +68,7 @@
   
 scm:git:git://git.apache.org/incubator-fluo.git
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-fluo.git
-rel/fluo-parent-1-incubating
+HEAD
 https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
   
   



incubator-fluo git commit: Use o.a.fluo build-resources

2016-08-04 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/fluo-parent d41fc8162 -> e1d18200f


Use o.a.fluo build-resources

Fix license wording, add missing "(incubating)" to project name in
pom.xml, NOTICE, and README.md, and switch build-resources from io.fluo
to the one provided by org.apache.fluo.

Also add missing slf4j plugin dependency for mavanagaiata to eliminate a
warning.


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

Branch: refs/heads/fluo-parent
Commit: e1d18200fa1c0c21850cd8f2551abb6485d748dc
Parents: d41fc81
Author: Christopher Tubbs 
Authored: Thu Aug 4 15:19:39 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 15:19:39 2016 -0400

--
 NOTICE|  2 +-
 README.md | 13 -
 pom.xml   | 29 ++---
 3 files changed, 27 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/e1d18200/NOTICE
--
diff --git a/NOTICE b/NOTICE
index dab393a..fe145d4 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,4 +1,4 @@
-Apache Fluo
+Apache Fluo Parent POM (incubating)
 Copyright 2016 The Apache Software Foundation.
 
 This product includes software developed at

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/e1d18200/README.md
--
diff --git a/README.md b/README.md
index 22a4f92..33fe5b5 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,10 @@
 
   2016
@@ -77,14 +77,14 @@
   
   
 posix
-
io/fluo/resources/java-checkstyle.xml
+1.0.0-incubating
+
org/apache/fluo/resources/java-checkstyle.xml
 
 Max
 true
 16
 true
-
io/fluo/resources/eclipse-formatter.xml
-1.0.1
+
org/apache/fluo/resources/eclipse-formatter.xml
 1.8
 1.8
 3.0.5
@@ -120,6 +120,13 @@
   
 true
   
+  
+
+  org.slf4j
+  slf4j-simple
+  1.7.2
+
+  
 
 
   net.revelc.code
@@ -132,9 +139,9 @@
   
   
 
-  io.fluo
-  resources
-  ${io.fluo.resources.version}
+  org.apache.fluo
+  build-resources
+  ${build-resources.version}
 
   
 
@@ -153,9 +160,9 @@
   7.0
 
 
-  io.fluo
-  resources
-  ${io.fluo.resources.version}
+  org.apache.fluo
+  build-resources
+  ${build-resources.version}
 
   
 



[1/2] incubator-fluo git commit: [maven-release-plugin] prepare release rel/build-resources-1.0.0-incubating

2016-08-04 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/build-resources-1.0.0-rc1-next [created] 055c0d0fc


[maven-release-plugin] prepare release rel/build-resources-1.0.0-incubating


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo/commit/02d4ea23
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/02d4ea23
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/02d4ea23

Branch: refs/heads/build-resources-1.0.0-rc1-next
Commit: 02d4ea2332598a94285985ee8a1c8e92a42b4770
Parents: 422d3b1
Author: Christopher Tubbs 
Authored: Thu Aug 4 15:10:01 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 15:10:01 2016 -0400

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/02d4ea23/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 83753e1..5e4a94f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
   org.apache.fluo
   build-resources
-  1.0.0-incubating-SNAPSHOT
+  1.0.0-incubating
   Apache Fluo Build Resources (incubating)
   Resources for building Apache Fluo projects
   https://fluo.apache.org
@@ -67,7 +67,7 @@
   
 scm:git:git://git.apache.org/incubator-fluo.git
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-fluo.git
-HEAD
+rel/build-resources-1.0.0-incubating
 https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
   
   



[3/5] incubator-fluo git commit: Fix README

2016-08-04 Thread ctubbsii
Fix README


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo/commit/065bf9d7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/065bf9d7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/065bf9d7

Branch: refs/heads/build-resources
Commit: 065bf9d7a599bfc40d563e3a3f5413064d3d0581
Parents: 7b6766a
Author: Christopher Tubbs 
Authored: Thu Aug 4 14:36:40 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 14:36:40 2016 -0400

--
 README.md | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/065bf9d7/README.md
--
diff --git a/README.md b/README.md
index 9d30031..3bb46b0 100644
--- a/README.md
+++ b/README.md
@@ -23,9 +23,9 @@ Build Resources for Apache Fluo projects
 
 This project uses semantic versioning.
 
-[ti]: https://travis-ci.org/apache/incubator-fluo.svg?branch=fluo-parent
+[ti]: https://travis-ci.org/apache/incubator-fluo.svg?branch=build-resources
 [tl]: https://travis-ci.org/apache/incubator-fluo/branches
-[mi]: 
https://maven-badges.herokuapp.com/maven-central/org.apache.fluo/fluo-parent/badge.svg
-[ml]: 
https://maven-badges.herokuapp.com/maven-central/org.apache.fluo/fluo-parent
+[mi]: 
https://maven-badges.herokuapp.com/maven-central/org.apache.fluo/build-resources/badge.svg
+[ml]: 
https://maven-badges.herokuapp.com/maven-central/org.apache.fluo/build-resources
 [li]: https://img.shields.io/badge/license-ASL-blue.svg
-[ll]: https://github.com/apache/incubator-fluo/blob/master/LICENSE
+[ll]: https://github.com/apache/incubator-fluo/blob/build-resources/LICENSE



[02/17] incubator-fluo git commit: Create jar with format and style rules

2016-08-03 Thread ctubbsii
Create jar with format and style rules


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo/commit/9c3ee4aa
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/9c3ee4aa
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/9c3ee4aa

Branch: refs/heads/build-resources
Commit: 9c3ee4aab33170ecbe4bed4e3828955d22bb80f8
Parents: 0b3c33d
Author: Christopher Tubbs 
Authored: Wed Feb 24 14:21:41 2016 -0500
Committer: Christopher Tubbs 
Committed: Wed Feb 24 14:21:41 2016 -0500

--
 .gitignore  |  13 +-
 .travis.yml |   7 +
 NOTICE  |   1 +
 README.md   |  45 +-
 pom.xml | 481 +++
 .../io/fluo/build-tools/eclipse-formatter.xml   | 350 ++
 .../io/fluo/build-tools/java-checkstyle.xml | 180 +++
 7 files changed, 1066 insertions(+), 11 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/9c3ee4aa/.gitignore
--
diff --git a/.gitignore b/.gitignore
index 1cdc9f7..d98981c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,4 @@
-target/
-pom.xml.tag
-pom.xml.releaseBackup
-pom.xml.versionsBackup
-pom.xml.next
-release.properties
-dependency-reduced-pom.xml
-buildNumber.properties
-.mvn/timing.properties
+/target/
+/.classpath
+/.project
+/.settings/

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/9c3ee4aa/.travis.yml
--
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000..0595e1d
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,7 @@
+language: java
+
+jdk:
+  - oraclejdk8
+  - oraclejdk7
+  - openjdk7
+

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/9c3ee4aa/NOTICE
--
diff --git a/NOTICE b/NOTICE
new file mode 100644
index 000..0c4bcb8
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1 @@
+Copyright 2016 Fluo authors (see AUTHORS)

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/9c3ee4aa/README.md
--
diff --git a/README.md b/README.md
index 8548070..5b41a42 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,43 @@
-# build-tools
-Build tools
+
+
+[![Build Status][ti]][tl] [![Maven Central][mi]][ml] [![Issues][ii]][il]
+[![Forks][fi]][fl] [![Stars][si]][sl] [![Apache License][li]][ll]
+
+# Build Tools
+
+View documentation at:
+http://fluo.io
+
+Build tools for fluo-io projects
+
+This project uses [Semantic Versioning 2.0.0][semver], with its API being the
+resources it contains. Breaking changes, such as the removal of a resource,
+will increment the major version, new resources and other non-breaking changes
+will increment the minor version, and bugfixes to existing resources will
+increment the patch version.
+
+[semver]: http://semver.org/spec/v2.0.0.html
+[ti]: https://travis-ci.org/fluo-io/build-tools.svg?branch=master
+[tl]: https://travis-ci.org/fluo-io/build-tools
+[mi]: 
https://maven-badges.herokuapp.com/maven-central/io.fluo/build-tools/badge.svg
+[ml]: https://maven-badges.herokuapp.com/maven-central/io.fluo/build-tools
+[ii]: https://img.shields.io/github/issues/fluo-io/build-tools.svg
+[il]: https://github.com/fluo-io/build-tools/issues
+[fi]: https://img.shields.io/github/forks/fluo-io/build-tools.svg
+[fl]: https://github.com/fluo-io/build-tools/network
+[si]: https://img.shields.io/github/stars/fluo-io/build-tools.svg
+[sl]: https://github.com/fluo-io/build-tools/stargazers
+[li]: http://img.shields.io/badge/license-ASL-blue.svg
+[ll]: https://github.com/fluo-io/build-tools/blob/master/LICENSE

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/9c3ee4aa/pom.xml
--
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 000..0064c9e
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,481 @@
+
+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;>
+  4.0.0
+  
+org.sonatype.oss
+oss-parent
+9
+  
+  io.fluo
+  build-tools
+  1.0.0-SNAPSHOT
+  jar
+  Fluo.io Build Tools
+  Build tools for fluo.io projects
+  https://github.com/fluo-io/build-tools
+  
+Fluo.io
+http://fluo.io
+  
+  
+
+  Apache License, Version 2.0
+  http://www.apache.org/licenses/LICENSE-2.0
+  repo
+
+  
+  
+
+  Dev
+  fluo-dev+subscr...@googlegroups.com

[06/17] incubator-fluo git commit: Parent POM improvements

2016-08-03 Thread ctubbsii
Parent POM improvements

* Unlink dependency on sonatype parent pom
* Enhance the release plugin config
* Make m2e less sensitive to versions for ignored executions


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo/commit/0013162f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/0013162f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/0013162f

Branch: refs/heads/build-resources
Commit: 0013162f81d93712e330beb6c5662d552e9fe80b
Parents: 7a83e5e
Author: Christopher Tubbs 
Authored: Wed Feb 24 18:23:13 2016 -0500
Committer: Christopher Tubbs 
Committed: Wed Feb 24 18:23:13 2016 -0500

--
 pom.xml | 185 +++
 1 file changed, 173 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/0013162f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 985a5d2..1cf6da6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,11 +1,6 @@
 
 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;>
   4.0.0
-  
-org.sonatype.oss
-oss-parent
-9
-  
   io.fluo
   build-resources
   1.0.0-SNAPSHOT
@@ -44,16 +39,45 @@
 GitHub
 https://github.com/fluo-io/build-resources/issues
   
+  
+
+  sonatype-nexus-staging
+  Nexus Release Repository
+  https://oss.sonatype.org/service/local/staging/deploy/maven2/
+
+
+  sonatype-nexus-snapshots
+  Sonatype Nexus Snapshots
+  ${sonatypeOssDistMgmtSnapshotsUrl}
+
+  
   
 
src/main/resources/io/fluo/build-resources/java-checkstyle.xml
+
 
src/main/resources/io/fluo/build-resources/eclipse-formatter.xml
 true
 1.7
 1.7
 3.0.5
+UTF-8
 UTF-8
+
https://oss.sonatype.org/content/repositories/snapshots/
+
source-release-tar
 2.19.1
   
+  
+
+  
+false
+  
+  
+true
+  
+  sonatype-nexus-snapshots
+  Sonatype Nexus Snapshots
+  https://oss.sonatype.org/content/repositories/snapshots
+
+  
   
 
   
@@ -86,6 +110,9 @@
   org.apache.maven.plugins
   maven-assembly-plugin
   2.6
+  
+gnu
+  
 
 
   org.apache.maven.plugins
@@ -94,6 +121,13 @@
   
 warning
   
+  
+
+  com.puppycrawl.tools
+  checkstyle
+  6.15
+
+  
 
 
   org.apache.maven.plugins
@@ -118,6 +152,11 @@
 
 
   org.apache.maven.plugins
+  maven-dependency-plugin
+  2.10
+
+
+  org.apache.maven.plugins
   maven-deploy-plugin
   2.8.2
 
@@ -126,7 +165,7 @@
   maven-enforcer-plugin
   1.4.1
   
-
+
   
 [${maven.min-version},)
 This project requires Maven ${maven.min-version} or 
later
@@ -158,6 +197,17 @@
   org.apache.maven.plugins
   maven-jar-plugin
   2.6
+  
+
+  
+
true
+
true
+  
+  
+true
+  
+
+  
 
 
   org.apache.maven.plugins
@@ -169,17 +219,32 @@
   maven-release-plugin
   2.5.3
   
-false
+true
+-Pfluo-io-release ${extraReleaseArguments}
+clean deploy
 true
+forked-path
+false
+false
   
 
 
   org.apache.maven.plugins
+  maven-remote-resources-plugin
+  1.5
+
+
+  org.apache.maven.plugins
   maven-resources-plugin
   2.7
 
 
   org.apache.maven.plugins
+  maven-scm-plugin
+  1.9.4
+
+
+  org.apache.maven.plugins
   maven-site-plugin
   3.5
 
@@ -328,6 +393,75 @@
   
   
 
+  fluo-io-release
+  
+
+  
+org.apache.maven.plugins
+maven-assembly-plugin
+
+  
+org.apache.apache.resources
+
apache-source-release-assembly-descriptor
+1.0.5
+  
+
+
+  
+source-release-assembly
+
+  single
+
+validate
+   

[13/17] incubator-fluo git commit: [maven-release-plugin] prepare for next development iteration

2016-08-03 Thread ctubbsii
[maven-release-plugin] prepare for next development iteration


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

Branch: refs/heads/build-resources
Commit: a34c6f35201bb86a95a963d1943e20354971e5a5
Parents: e375ed7
Author: Christopher Tubbs 
Authored: Thu Feb 25 17:44:32 2016 -0500
Committer: Christopher Tubbs 
Committed: Thu Feb 25 17:44:32 2016 -0500

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a34c6f35/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 7b96ea3..66b6882 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
   4.0.0
   io.fluo
   resources
-  1.0.0
+  1.0.1-SNAPSHOT
   jar
   Fluo.io Resources
   Build resources for fluo.io projects
@@ -38,7 +38,7 @@
   
 scm:git:https://github.com/fluo-io/resources.git
 
scm:git:g...@github.com:fluo-io/resources.git
-resources-1.0.0
+HEAD
 https://github.com/fluo-io/resources
   
   



[09/17] incubator-fluo git commit: Keep in sync with parent pom (add shade plugin)

2016-08-03 Thread ctubbsii
Keep in sync with parent pom (add shade plugin)


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo/commit/7ddc9918
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/7ddc9918
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/7ddc9918

Branch: refs/heads/build-resources
Commit: 7ddc9918a635e379c1420d2871974046f774590e
Parents: 82a8c3f
Author: Christopher Tubbs 
Authored: Thu Feb 25 15:15:55 2016 -0500
Committer: Christopher Tubbs 
Committed: Thu Feb 25 15:15:55 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7ddc9918/pom.xml
--
diff --git a/pom.xml b/pom.xml
index a8b2d94..a353a2d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -249,6 +249,11 @@
 
 
   org.apache.maven.plugins
+  maven-shade-plugin
+  2.4.3
+
+
+  org.apache.maven.plugins
   maven-site-plugin
   3.5
 



[2/5] incubator-fluo git commit: Fixes #729 Adds missing hashCode implementations

2016-07-27 Thread ctubbsii
Fixes #729 Adds missing hashCode implementations

Adds missing hashCode methods for classes which override equals.


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

Branch: refs/heads/master
Commit: c9f41e2ecb0b8b47d0d61487b409bb7f3e1e8c4e
Parents: 5ed9f2d
Author: Christopher Tubbs 
Authored: Tue Jul 26 14:40:13 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Jul 27 15:54:29 2016 -0400

--
 .../test/java/org/apache/fluo/accumulo/iterators/TestData.java | 6 ++
 modules/api/src/main/java/org/apache/fluo/api/data/Span.java   | 5 +
 2 files changed, 11 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/c9f41e2e/modules/accumulo/src/test/java/org/apache/fluo/accumulo/iterators/TestData.java
--
diff --git 
a/modules/accumulo/src/test/java/org/apache/fluo/accumulo/iterators/TestData.java
 
b/modules/accumulo/src/test/java/org/apache/fluo/accumulo/iterators/TestData.java
index ae809c8..99b2b41 100644
--- 
a/modules/accumulo/src/test/java/org/apache/fluo/accumulo/iterators/TestData.java
+++ 
b/modules/accumulo/src/test/java/org/apache/fluo/accumulo/iterators/TestData.java
@@ -18,6 +18,7 @@ package org.apache.fluo.accumulo.iterators;
 import java.io.IOException;
 import java.util.HashSet;
 import java.util.Map.Entry;
+import java.util.Objects;
 import java.util.Set;
 import java.util.TreeMap;
 
@@ -158,4 +159,9 @@ public class TestData {
 sb.append("}");
 return sb.toString();
   }
+
+  @Override
+  public int hashCode() {
+return Objects.hashCode(data);
+  }
 }

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/c9f41e2e/modules/api/src/main/java/org/apache/fluo/api/data/Span.java
--
diff --git a/modules/api/src/main/java/org/apache/fluo/api/data/Span.java 
b/modules/api/src/main/java/org/apache/fluo/api/data/Span.java
index 61f3178..6ac084b 100644
--- a/modules/api/src/main/java/org/apache/fluo/api/data/Span.java
+++ b/modules/api/src/main/java/org/apache/fluo/api/data/Span.java
@@ -194,6 +194,11 @@ public class Span implements Serializable {
 + ((endInclusive && !end.equals(RowColumn.EMPTY)) ? "]" : ")");
   }
 
+  @Override
+  public int hashCode() {
+return Objects.hash(start, end, startInclusive, endInclusive);
+  }
+
   /**
* Creates a span that covers an exact row
*/



[3/5] incubator-fluo git commit: Fixes #732 Remove declaration of unthrown exceptions

2016-07-27 Thread ctubbsii
Fixes #732 Remove declaration of unthrown exceptions

Remove declaration of "throws Exception" from AutoCloseable classes
whose close methods do not actually throw any checked exceptions. This
prevents propagating misinformation about what is possible to occur in
this method, and avoids a compiler warning about the possibility of
throwing InterruptedException.


Project: http://git-wip-us.apache.org/repos/asf/incubator-fluo/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fluo/commit/302582b7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/302582b7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/302582b7

Branch: refs/heads/master
Commit: 302582b74cf967bc47a8262b1d1416e661a66aa4
Parents: eb8a1bc
Author: Christopher Tubbs 
Authored: Tue Jul 26 14:53:31 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Jul 27 15:54:53 2016 -0400

--
 .../main/java/org/apache/fluo/cluster/runner/YarnAppRunner.java| 2 +-
 .../src/test/java/org/apache/fluo/integration/ITBaseImpl.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/302582b7/modules/cluster/src/main/java/org/apache/fluo/cluster/runner/YarnAppRunner.java
--
diff --git 
a/modules/cluster/src/main/java/org/apache/fluo/cluster/runner/YarnAppRunner.java
 
b/modules/cluster/src/main/java/org/apache/fluo/cluster/runner/YarnAppRunner.java
index 6c52292..7894bce 100644
--- 
a/modules/cluster/src/main/java/org/apache/fluo/cluster/runner/YarnAppRunner.java
+++ 
b/modules/cluster/src/main/java/org/apache/fluo/cluster/runner/YarnAppRunner.java
@@ -434,7 +434,7 @@ public class YarnAppRunner extends ClusterAppRunner 
implements AutoCloseable {
   }
 
   @Override
-  public void close() throws Exception {
+  public void close() {
 for (TwillRunnerService twillRunner : twillRunners.values()) {
   twillRunner.stop();
 }

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/302582b7/modules/integration/src/test/java/org/apache/fluo/integration/ITBaseImpl.java
--
diff --git 
a/modules/integration/src/test/java/org/apache/fluo/integration/ITBaseImpl.java 
b/modules/integration/src/test/java/org/apache/fluo/integration/ITBaseImpl.java
index 14d5efd..656a5d9 100644
--- 
a/modules/integration/src/test/java/org/apache/fluo/integration/ITBaseImpl.java
+++ 
b/modules/integration/src/test/java/org/apache/fluo/integration/ITBaseImpl.java
@@ -56,7 +56,7 @@ public class ITBaseImpl extends ITBase {
 }
 
 @Override
-public void close() throws Exception {
+public void close() {
   env.close();
 }
   }



[1/5] incubator-fluo git commit: Fixes #731 Make use of auto-closeables

2016-07-27 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/master 5ed9f2d86 -> cdbf2bbab


Fixes #731 Make use of auto-closeables

Make explicit use of AutoCloseable resources started in try-catch blocks
to prevent a compiler warning about their lack of use.

Remove unneeded MiniFluoImpl.main


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

Branch: refs/heads/master
Commit: eb8a1bccd8ac2cf644c5326d5a8476d2af10e5d6
Parents: c9f41e2
Author: Christopher Tubbs 
Authored: Tue Jul 26 14:48:39 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Jul 27 15:54:29 2016 -0400

--
 .../apache/fluo/core/client/FluoClientTest.java |  4 +--
 .../java/org/apache/fluo/mini/MiniFluoImpl.java | 38 
 2 files changed, 2 insertions(+), 40 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/eb8a1bcc/modules/core/src/test/java/org/apache/fluo/core/client/FluoClientTest.java
--
diff --git 
a/modules/core/src/test/java/org/apache/fluo/core/client/FluoClientTest.java 
b/modules/core/src/test/java/org/apache/fluo/core/client/FluoClientTest.java
index ccb9cef..33d1291 100644
--- a/modules/core/src/test/java/org/apache/fluo/core/client/FluoClientTest.java
+++ b/modules/core/src/test/java/org/apache/fluo/core/client/FluoClientTest.java
@@ -42,7 +42,7 @@ public class FluoClientTest {
 }
 
 try (FluoClientImpl impl = new FluoClientImpl(config)) {
-  Assert.fail();
+  Assert.fail("FluoClientImpl was " + impl);
 } catch (IllegalArgumentException e) {
 }
 
@@ -53,7 +53,7 @@ public class FluoClientTest {
 config.setZookeeperTimeout(5);
 
 try (FluoClientImpl impl = new FluoClientImpl(config)) {
-  Assert.fail();
+  Assert.fail("FluoClientImpl was " + impl);
 } catch (IllegalStateException e) {
 }
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/eb8a1bcc/modules/mini/src/main/java/org/apache/fluo/mini/MiniFluoImpl.java
--
diff --git a/modules/mini/src/main/java/org/apache/fluo/mini/MiniFluoImpl.java 
b/modules/mini/src/main/java/org/apache/fluo/mini/MiniFluoImpl.java
index 59f82c8..4e798ab 100644
--- a/modules/mini/src/main/java/org/apache/fluo/mini/MiniFluoImpl.java
+++ b/modules/mini/src/main/java/org/apache/fluo/mini/MiniFluoImpl.java
@@ -16,12 +16,10 @@
 package org.apache.fluo.mini;
 
 import java.io.File;
-import java.util.Objects;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
 
 import com.google.common.annotations.VisibleForTesting;
-import com.google.common.base.Preconditions;
 import com.google.common.collect.Iterables;
 import com.google.common.util.concurrent.Uninterruptibles;
 import org.apache.accumulo.core.client.Scanner;
@@ -38,7 +36,6 @@ import org.apache.fluo.core.impl.Environment;
 import org.apache.fluo.core.impl.FluoConfigurationImpl;
 import org.apache.fluo.core.impl.Notification;
 import org.apache.fluo.core.oracle.OracleServer;
-import org.apache.fluo.core.util.UtilWaitThread;
 import org.apache.fluo.core.worker.NotificationFinder;
 import org.apache.fluo.core.worker.NotificationFinderFactory;
 import org.apache.fluo.core.worker.NotificationProcessor;
@@ -191,39 +188,4 @@ public class MiniFluoImpl implements MiniFluo {
 }
   }
 
-  public static void main(String[] args) {
-
-try {
-  if (args.length != 1) {
-System.err.println("Usage: MiniFluoImpl ");
-System.exit(-1);
-  }
-  String propsPath = args[0];
-  Objects.requireNonNull(propsPath);
-  File propsFile = new File(propsPath);
-  if (!propsFile.exists()) {
-System.err.println("ERROR - Fluo properties file does not exist: " + 
propsPath);
-System.exit(-1);
-  }
-  Preconditions.checkArgument(propsFile.exists());
-
-  FluoConfiguration config = new FluoConfiguration(propsFile);
-  if (!config.hasRequiredMiniFluoProps()) {
-log.error("Failed to start MiniFluo - fluo.properties is missing 
required properties for "
-+ "MiniFluo");
-System.exit(-1);
-  }
-  try (MiniFluo mini = new MiniFluoImpl(config)) {
-log.info("MiniFluo is running");
-
-while (true) {
-  UtilWaitThread.sleep(1000);
-}
-  }
-} catch (Exception e) {
-  log.error("Exception running MiniFluo: ", e);
-}
-
-log.info("MiniFluo is exiting.");
-  }
 }



incubator-fluo git commit: [maven-release-plugin] prepare release rel/fluo-parent-1-incubating

2016-07-27 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/fluo-parent-1-rc2 [created] e9ed4334d


[maven-release-plugin] prepare release rel/fluo-parent-1-incubating


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

Branch: refs/heads/fluo-parent-1-rc2
Commit: e9ed4334dd4cc5df27def417f26d6d7362470cb8
Parents: d41fc81
Author: Christopher Tubbs 
Authored: Wed Jul 27 13:06:58 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Jul 27 13:06:58 2016 -0400

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/e9ed4334/pom.xml
--
diff --git a/pom.xml b/pom.xml
index ad217c8..f81fab1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
   org.apache.fluo
   fluo-parent
-  1-SNAPSHOT
+  1-incubating
   pom
   Apache Fluo Parent POM
   Parent pom to configure common project build resources for 
Apache Fluo projects
@@ -68,7 +68,7 @@
   
 scm:git:git://git.apache.org/incubator-fluo.git
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-fluo.git
-HEAD
+rel/fluo-parent-1-incubating
 https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
   
   



[2/3] incubator-fluo git commit: Review changes

2016-07-20 Thread ctubbsii
Review changes


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

Branch: refs/heads/fluo-parent
Commit: f6c26446020af6cff43eb15108191e5b51b22c99
Parents: 2c1ef18
Author: garvit244 
Authored: Thu Jul 7 23:06:49 2016 +0530
Committer: garvit244 
Committed: Thu Jul 7 23:06:49 2016 +0530

--
 pom.xml | 156 +--
 1 file changed, 34 insertions(+), 122 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/f6c26446/pom.xml
--
diff --git a/pom.xml b/pom.xml
index bd5bfcb..5eb8499 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,62 +6,50 @@
 apache
 18
   
-  io.fluo
+  org.apache.fluo
   fluo-parent
-  1
+  1-SNAPSHOT
   pom
-  Fluo.io Parent POM
+  Apache Fluo Parent POM
   Parent pom to configure common project build resources for 
fluo.io projects
-  https://github.com/fluo-io/fluo-io-parent
+  https://github.com/apache/incubator-fluo/tree/fluo-parent
   
-Fluo.io
-http://fluo.io
+The Apache Software Foundation
+https://www.apache.org
   
   
 
   Apache License, Version 2.0
   http://www.apache.org/licenses/LICENSE-2.0
-  repo
 
   
-  
-
-  Fluo.io contributors
-  Fluo.io
-
-  
   
 
   Dev
   fluo-dev+subscr...@googlegroups.com
   fluo-dev+unsubscr...@googlegroups.com
-  fluo-...@googlegroups.com
+  d...@fluo.incubator.apache.org
   https://groups.google.com/forum/#!forum/fluo-dev
 
+
+  Commits
+  commits@fluo.incubator.apache.org
+
+
+  Notifications
+  notificati...@fluo.incubator.apache.org
+
   
-  
   
-
scm:git:https://github.com/fluo-io/fluo-io-parent.git
-
scm:git:g...@github.com:fluo-io/fluo-io-parent.git
+
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-fluo.git
+
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-fluo.git
 HEAD
-https://github.com/fluo-io/fluo-io-parent
+https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
   
   
 GitHub
-https://github.com/fluo-io/fluo-io-parent/issues
+https://github.com/apache/incubator-fluo/issues
   
-  
-
-  sonatype-nexus-staging
-  Nexus Release Repository
-  https://oss.sonatype.org/service/local/staging/deploy/maven2/
-
-
-  sonatype-nexus-snapshots
-  Sonatype Nexus Snapshots
-  ${sonatypeOssDistMgmtSnapshotsUrl}
-
-  
   
 
io/fluo/resources/java-checkstyle.xml
 
@@ -77,22 +65,9 @@
 3.0.5
 UTF-8
 UTF-8
-
https://oss.sonatype.org/content/repositories/snapshots/
+posix
 
source-release-tar
   
-  
-
-  
-false
-  
-  
-true
-  
-  sonatype-nexus-snapshots
-  Sonatype Nexus Snapshots
-  https://oss.sonatype.org/content/repositories/snapshots
-
-  
   
 
   
@@ -166,30 +141,19 @@
 
 
   org.apache.maven.plugins
-  maven-enforcer-plugin
-  1.4.1
-  
-
-  
-[${maven.min-version},)
-This project requires Maven ${maven.min-version} or 
later
-  
-
-  
-
-
-  org.apache.maven.plugins
-  maven-release-plugin
-  2.5.3
-  
-true
--Pfluo-io-release ${extraReleaseArguments}
-clean deploy
-true
-forked-path
-false
-false
-  
+maven-jar-plugin
+2.6
+
+  
+
+  
true
+  
true
+
+
+  true
+
+  
+
 
 
   org.apache.maven.plugins
@@ -199,20 +163,11 @@
 
   org.apache.rat
   apache-rat-plugin
-  0.11
   
 
   /.travis.yml
 
   
-  
-
-
-  org.apache.maven.doxia
-  doxia-core
-  1.7
-
-  
 
 
   org.codehaus.mojo
@@ -260,18 +215,6 @@
   
   
 org.apache.maven.plugins
-maven-enforcer-plugin
-
-  
-enforce-maven
-
-  enforce
-
-  
-
-  
-  
-org.apache.maven.plugins
 maven-failsafe-plugin