[fluo] branch build-resources updated: Preserve license header comment formatting (#911)

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 e47f0c7  Preserve license header comment formatting (#911)
e47f0c7 is described below

commit e47f0c7190c4ff5dbd5f302ae5640b6453d0bd11
Author: Christopher Tubbs 
AuthorDate: Wed Aug 16 01:49:14 2017 +0200

Preserve license header comment formatting (#911)
---
 src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml 
b/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml
index ebff4d6..20a6796 100644
--- a/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml
+++ b/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml
@@ -304,7 +304,7 @@
 
 
 
-
+
 
 
 

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


[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 
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" '].


[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 
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" '].


[fluo-bytes] 01/01: Initialize repository with LICENSE and NOTICE

2017-08-09 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

commit 187332ee93ffe36663cb1cac15b512740a775bab
Author: Christopher Tubbs 
AuthorDate: Wed Aug 9 14:50:23 2017 -0400

Initialize repository with LICENSE and NOTICE

Create repository with initial commit containing Apache 2.0 license text
and NOTICE file.
---
 LICENSE | 202 
 NOTICE  |   5 ++
 2 files changed, 207 insertions(+)

diff --git a/LICENSE b/LICENSE
new file mode 100644
index 000..d645695
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+   Version 2.0, January 2004
+http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+  "License" shall mean the terms and conditions for use, reproduction,
+  and distribution as defined by Sections 1 through 9 of this document.
+
+  "Licensor" shall mean the copyright owner or entity authorized by
+  the copyright owner that is granting the License.
+
+  "Legal Entity" shall mean the union of the acting entity and all
+  other entities that control, are controlled by, or are under common
+  control with that entity. For the purposes of this definition,
+  "control" means (i) the power, direct or indirect, to cause the
+  direction or management of such entity, whether by contract or
+  otherwise, or (ii) ownership of fifty percent (50%) or more of the
+  outstanding shares, or (iii) beneficial ownership of such entity.
+
+  "You" (or "Your") shall mean an individual or Legal Entity
+  exercising permissions granted by this License.
+
+  "Source" form shall mean the preferred form for making modifications,
+  including but not limited to software source code, documentation
+  source, and configuration files.
+
+  "Object" form shall mean any form resulting from mechanical
+  transformation or translation of a Source form, including but
+  not limited to compiled object code, generated documentation,
+  and conversions to other media types.
+
+  "Work" shall mean the work of authorship, whether in Source or
+  Object form, made available under the License, as indicated by a
+  copyright notice that is included in or attached to the work
+  (an example is provided in the Appendix below).
+
+  "Derivative Works" shall mean any work, whether in Source or Object
+  form, that is based on (or derived from) the Work and for which the
+  editorial revisions, annotations, elaborations, or other modifications
+  represent, as a whole, an original work of authorship. For the purposes
+  of this License, Derivative Works shall not include works that remain
+  separable from, or merely link (or bind by name) to the interfaces of,
+  the Work and Derivative Works thereof.
+
+  "Contribution" shall mean any work of authorship, including
+  the original version of the Work and any modifications or additions
+  to that Work or Derivative Works thereof, that is intentionally
+  submitted to Licensor for inclusion in the Work by the copyright owner
+  or by an individual or Legal Entity authorized to submit on behalf of
+  the copyright owner. For the purposes of this definition, "submitted"
+  means any form of electronic, verbal, or written communication sent
+  to the Licensor or its representatives, including but not limited to
+  communication on electronic mailing lists, source code control systems,
+  and issue tracking systems that are managed by, or on behalf of, the
+  Licensor for the purpose of discussing and improving the Work, but
+  excluding communication that is conspicuously marked or otherwise
+  designated in writing by the copyright owner as "Not a Contribution."
+
+  "Contributor" shall mean Licensor and any individual or Legal Entity
+  on behalf of whom a Contribution has been received by Licensor and
+  subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+  this License, each Contributor hereby grants to You a perpetual,
+  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+  copyright license to reproduce, prepare Derivative Works of,
+  publicly display, publicly perform, sublicense, and distribute the
+  Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+  this License, each Contributor hereby grants to You a perpetual,
+

[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" '].


[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 
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" '].


[fluo-website] branch gh-pages updated: remove incubator from github links

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

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


The following commit(s) were added to refs/heads/gh-pages by this push:
 new 4162937  remove incubator from github links
4162937 is described below

commit 4162937924a0b821020b33afb6e255df1ce9fdca
Author: Keith Turner 
AuthorDate: Fri Aug 4 19:13:43 2017 -0400

remove incubator from github links
---
 pages/contactus.md |  4 ++--
 pages/how-to-contribute.md |  4 ++--
 pages/people.md|  2 +-
 pages/poweredby.md |  2 +-
 pages/related-projects.md  |  6 +++---
 pages/release-process.md   | 10 +-
 tour/basic-read-write.md   |  2 +-
 tour/index.md  |  2 +-
 tour/writing-code.md   |  4 ++--
 9 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/pages/contactus.md b/pages/contactus.md
index ce0d727..f198824 100644
--- a/pages/contactus.md
+++ b/pages/contactus.md
@@ -49,10 +49,10 @@ Contributions are welcome to all Apache Fluo projects! If 
you would like help ge
 
 [f]: https://github.com/apache/fluo
 [r]: https://github.com/apache/fluo-recipes
-[w]: https://github.com/apache/incubator-fluo-website
+[w]: https://github.com/apache/fluo-website
 [fi]: https://github.com/apache/fluo/issues
 [ri]: https://github.com/apache/fluo-recipes/issues
-[wi]: https://github.com/apache/incubator-fluo-website/issues
+[wi]: https://github.com/apache/fluo-website/issues
 [fnf]: irc://chat.freenode.net/fluo
 [fn]: https://freenode.net/
 [htc]: /how-to-contribute/
diff --git a/pages/how-to-contribute.md b/pages/how-to-contribute.md
index 696d93c..69f3127 100644
--- a/pages/how-to-contribute.md
+++ b/pages/how-to-contribute.md
@@ -69,10 +69,10 @@ This can be configured by common IDEs:
 
 [f]: https://github.com/apache/fluo
 [r]: https://github.com/apache/fluo-recipes
-[w]: https://github.com/apache/incubator-fluo-website
+[w]: https://github.com/apache/fluo-website
 [fi]: https://github.com/apache/fluo/issues
 [ri]: https://github.com/apache/fluo-recipes/issues
-[wi]: https://github.com/apache/incubator-fluo-website/issues
+[wi]: https://github.com/apache/fluo-website/issues
 [tutorial]: 
http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html
 [stackoverflow]: 
http://stackoverflow.com/questions/5189560/squash-my-last-x-commits-together-using-git
 [rtc]: http://www.apache.org/foundation/glossary.html#ReviewThenCommit
diff --git a/pages/people.md b/pages/people.md
index baf0504..2fd36ac 100644
--- a/pages/people.md
+++ b/pages/people.md
@@ -21,7 +21,7 @@ permalink: /people/
 
 ## Contributors
 
-GitHub also has a [contributor 
list](https://github.com/apache/incubator-fluo/graphs/contributors)
+GitHub also has a [contributor 
list](https://github.com/apache/fluo/graphs/contributors)
 based on commits.
 
 | Name | Organization  
  | Timezone   |
diff --git a/pages/poweredby.md b/pages/poweredby.md
index 3df1a9e..51c2257 100644
--- a/pages/poweredby.md
+++ b/pages/poweredby.md
@@ -32,7 +32,7 @@ This website was made using:
 [commons]: http://commons.apache.org/
 [curator]: http://curator.apache.org/
 [hadoop]: http://hadoop.apache.org/
-[twill]: http://twill.incubator.apache.org/
+[twill]: http://twill.apache.org/
 [zookeeper]: http://zookeeper.apache.org/
 [dropwizard]: https://dropwizard.github.io/metrics/3.1.0/
 [junit]: http://junit.org/
diff --git a/pages/related-projects.md b/pages/related-projects.md
index 2c4ff4e..1c04151 100644
--- a/pages/related-projects.md
+++ b/pages/related-projects.md
@@ -27,8 +27,8 @@ list, please open an issue or submit a pull request [on 
Github][web-ghr].
 * [Stresso] - An example application designed to stress Apache Fluo
 
 [asf]: https://www.apache.org/
-[Fluo]: https://github.com/apache/incubator-fluo
-[Fluo Recipes]: https://github.com/apache/incubator-fluo-recipes
+[Fluo]: https://github.com/apache/fluo
+[Fluo Recipes]: https://github.com/apache/fluo-recipes
 [Muchos]: https://github.com/astralway/muchos
 [Uno]: https://github.com/astralway/uno
 [Webindex]: https://github.com/astralway/webindex
@@ -36,5 +36,5 @@ list, please open an issue or submit a pull request [on 
Github][web-ghr].
 [Quickstart]: https://github.com/astralway/quickstart
 [Phrasecount]: https://github.com/astralway/phrasecount
 [Jaccard]: https://github.com/keith-turner/jaccard
-[web-ghr]: https://github.com/apache/incubator-fluo-website
+[web-ghr]: https://github.com/apache/fluo-website
 [Rya]: https://rya.apache.org
diff --git a/pages/release-process.md b/pages/release-process.md
index 7ffefa5..5456965 100644
--- a/pages/release-process.md
+++ b/pages/release-process.md
@@ -13,7 +13,7 @@ following command to checkout the svn repository that 
contains the KEYS files.
 repository will eventually sync to the website.
 
 ```bash
-svn co https://dist.apache.org/repos/dist/release/incubator/fluo/
+svn

[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 
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 Recipe

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: r20760 - in /dev/fluo: build-resources/ fluo-parent/ fluo-recipes/ fluo/

2017-08-03 Thread ctubbsii
Author: ctubbsii
Date: Fri Aug  4 03:17:45 2017
New Revision: 20760

Log:
Move empty Apache Fluo staging directories

Simultaneously create directories to prep Apache Fluo dist/dev staging area
(empty directories, with .gitignore files), and clean up no longer needed
dist/dev/incubator/fluo area.


Added:
dev/fluo/build-resources/
  - copied from r20759, dev/incubator/fluo/build-resources/
dev/fluo/fluo/
  - copied from r20759, dev/incubator/fluo/fluo/
dev/fluo/fluo-parent/
  - copied from r20759, dev/incubator/fluo/fluo-parent/
dev/fluo/fluo-recipes/
  - copied from r20759, dev/incubator/fluo/fluo-recipes/



svn commit: r20760 - in /dev/incubator/fluo: build-resources/ fluo-parent/ fluo-recipes/ fluo/

2017-08-03 Thread ctubbsii
Author: ctubbsii
Date: Fri Aug  4 03:17:45 2017
New Revision: 20760

Log:
Move empty Apache Fluo staging directories

Simultaneously create directories to prep Apache Fluo dist/dev staging area
(empty directories, with .gitignore files), and clean up no longer needed
dist/dev/incubator/fluo area.


Removed:
dev/incubator/fluo/build-resources/
dev/incubator/fluo/fluo/
dev/incubator/fluo/fluo-parent/
dev/incubator/fluo/fluo-recipes/



svn commit: r20759 - /dev/fluo/

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

Log:
Create dist dev area for Apache Fluo

Added:
dev/fluo/



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] branch fluo-parent updated: Update plugins, drop incubating, sort imports (#887)

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

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


The following commit(s) were added to refs/heads/fluo-parent by this push:
 new 9789f9f  Update plugins, drop incubating, sort imports (#887)
9789f9f is described below

commit 9789f9f9e0649522d86bb1afc92424d7178e9f16
Author: Christopher Tubbs 
AuthorDate: Thu Jul 27 23:17:33 2017 +0200

Update plugins, drop incubating, sort imports (#887)

* Update plugin versions
* Drop incubating status
* Add plugin to sort imports in autoformat profile
* Update URLs for gitbox
---
 DISCLAIMER |  9 ---
 NOTICE |  4 +--
 README.md  |  8 +++---
 pom.xml| 84 +-
 4 files changed, 67 insertions(+), 38 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/NOTICE b/NOTICE
index fe145d4..5c541b9 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
-Apache Fluo Parent POM (incubating)
-Copyright 2016 The Apache Software Foundation.
+Apache Fluo Parent POM
+Copyright 2017 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/README.md b/README.md
index 33fe5b5..120a52d 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@
 
 [![Build Status][ti]][tl] [![Maven Central][mi]][ml] [![Apache 
License][li]][ll]
 
-# Apache Fluo Parent POM (incubating)
+# Apache Fluo Parent POM
 
 View documentation at:
 https://fluo.apache.org
@@ -26,9 +26,9 @@ Parent pom for Apache Fluo projects
 
 This project uses a 1-up counter for its versioning.
 
-[ti]: https://travis-ci.org/apache/incubator-fluo.svg?branch=fluo-parent
-[tl]: https://travis-ci.org/apache/incubator-fluo/branches
+[ti]: https://travis-ci.org/apache/fluo.svg?branch=fluo-parent
+[tl]: https://travis-ci.org/apache/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
 [li]: https://img.shields.io/badge/license-ASL-blue.svg
-[ll]: https://github.com/apache/incubator-fluo/blob/fluo-parent/LICENSE
+[ll]: https://github.com/apache/fluo/blob/fluo-parent/LICENSE
diff --git a/pom.xml b/pom.xml
index 8af9054..2ea4db6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,9 +24,9 @@
   
   org.apache.fluo
   fluo-parent
-  2-incubating-SNAPSHOT
+  2-SNAPSHOT
   pom
-  Apache Fluo Parent POM (incubating)
+  Apache Fluo Parent POM
   Parent pom for common configuration across Apache Fluo 
projects
   https://fluo.apache.org
   
@@ -44,21 +44,21 @@
   
 
   Dev
-  dev-subscr...@fluo.incubator.apache.org
-  dev-unsubscr...@fluo.incubator.apache.org
-  d...@fluo.incubator.apache.org
+  dev-subscr...@fluo.apache.org
+  dev-unsubscr...@fluo.apache.org
+  d...@fluo.apache.org
   
https://lists.apache.org/list.html?d...@fluo.apache.org
 
 
   Commits
-  commits-subscr...@fluo.incubator.apache.org
-  commits-unsubscr...@fluo.incubator.apache.org
+  commits-subscr...@fluo.apache.org
+  commits-unsubscr...@fluo.apache.org
   
https://lists.apache.org/list.html?comm...@fluo.apache.org
 
 
   Notifications
-  notifications-subscr...@fluo.incubator.apache.org
-  
notifications-unsubscr...@fluo.incubator.apache.org
+  notifications-subscr...@fluo.apache.org
+  notifications-unsubscr...@fluo.apache.org
   
https://lists.apache.org/list.html?notificati...@fluo.apache.org
 
   
@@ -66,14 +66,14 @@
 ${maven.min-version}
   
   
-scm:git:git://git.apache.org/incubator-fluo.git
-
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-fluo.git
+
scm:git:https://gitbox.apache.org/repos/asf/fluo.git
+
scm:git:https://gitbox.apache.org/repos/asf/fluo.git
 HEAD
-https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
+https://gitbox.apache.org/repos/asf?p=fluo.git
   
   
 GitHub
-https://github.com/apache/incubator-fluo/issues
+https://github.com/apache/fluo/issues
   
   
 posix
@@ -96,12 +96,12 @@
 
   org.codehaus.mojo
   build-helper-maven-plugin
-  1.12
+  3.0.0

[incubator-fluo] branch build-resources updated (055c0d0 -> 513eece)

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

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


from 055c0d0  [maven-release-plugin] prepare for next development iteration
 add 513eece  Update plugin versions, drop incubating status

No new revisions were added by this update.

Summary of changes:
 DISCLAIMER |  9 -
 NOTICE |  4 ++--
 README.md  |  8 
 pom.xml| 30 +++---
 4 files changed, 21 insertions(+), 30 deletions(-)
 delete mode 100644 DISCLAIMER

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


[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 
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" '].


[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 
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" .


[incubator-fluo] branch master updated (2f11089 -> b0eef1c)

2017-07-26 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/incubator-fluo.git.


from 2f11089  fixes #867 - Stream support for Scanners (#884)
 new 5f0bbac  Update Notice
 new 70f43b7  update versions
 new ac0b1bc  remove incubating from core
 new b0eef1c  Merge branch 'pr-886'

The 4 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.


Summary of changes:
 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(-)
 delete mode 100644 DISCLAIMER

-- 
To stop receiving notification emails like this one, please contact
['"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 
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" .


[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 
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-SNAPSHOT
 ../../pom.xml

[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 
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" .


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 deleted (was 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.

   was  f0403a1   Merge branch 'fluo-839'

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.

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


[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" '].


[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 -
 .../bootstrap/mixins/_text-emphasis.scss|  11 -
 .../bootstrap/m

[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&&b>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&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(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===a.window},isNumeric:functi
 
on(a){return!n.isArray(a)&&a-parseFloat(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&&a.nodeName.toLowerCase()===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&&e.push(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&&i.push(d);else
 for(f in a)d=b(a[f],f,c),null!=d&&i.push(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&&b?!0:"array"===c||0===b||"number"==typeof
 b&&b>0&&b-1 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.p

[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 generatin

[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;
-$navbar-inverse-toggle-border-color: #fff;
-$navbar-i

[09/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/tour/application-configuration/index.html
--
diff --git a/tour/application-configuration/index.html 
b/tour/application-configuration/index.html
index f250ea1..ca94103 100644
--- a/tour/application-configuration/index.html
+++ b/tour/application-configuration/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//tour/application-configuration/";>
 
+
 Application Configuration | 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 @@
   
 
   
-
+
 
   
   
@@ -277,21 +291,5 @@ if (e.keyCode == '39') { window.location = 
'/tour/mem-self-ntfy/'; }
 
   
 
-
-
-
-
-
-
-  (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/tour/architecture/index.html
--
diff --git a/tour/architecture/index.html b/tour/architecture/index.html
index 8e90e82..ad82f88 100644
--- a/tour/architecture/index.html
+++ b/tour/architecture/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//tour/architecture/";>
 
+
 Architecture | 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 @@
   
 

[04/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/_modals.scss
--
diff --git a/_sass/bootstrap-sass/bootstrap/_modals.scss 
b/_sass/bootstrap-sass/bootstrap/_modals.scss
deleted file mode 100755
index 785ca5c..000
--- a/_sass/bootstrap-sass/bootstrap/_modals.scss
+++ /dev/null
@@ -1,150 +0,0 @@
-//
-// Modals
-// --
-
-// .modal-open  - body class for killing the scroll
-// .modal   - container to scroll within
-// .modal-dialog- positioning shell for the actual modal
-// .modal-content   - actual modal w/ bg and corners and shit
-
-// Kill the scroll on the body
-.modal-open {
-  overflow: hidden;
-}
-
-// Container that the modal scrolls within
-.modal {
-  display: none;
-  overflow: hidden;
-  position: fixed;
-  top: 0;
-  right: 0;
-  bottom: 0;
-  left: 0;
-  z-index: $zindex-modal;
-  -webkit-overflow-scrolling: touch;
-
-  // Prevent Chrome on Windows from adding a focus outline. For details, see
-  // https://github.com/twbs/bootstrap/pull/10951.
-  outline: 0;
-
-  // When fading in the modal, animate it to slide down
-  &.fade .modal-dialog {
-@include translate3d(0, -25%, 0);
-@include transition-transform(0.3s ease-out);
-  }
-  &.in .modal-dialog { @include translate3d(0, 0, 0) }
-}
-.modal-open .modal {
-  overflow-x: hidden;
-  overflow-y: auto;
-}
-
-// Shell div to position the modal with bottom padding
-.modal-dialog {
-  position: relative;
-  width: auto;
-  margin: 10px;
-}
-
-// Actual modal
-.modal-content {
-  position: relative;
-  background-color: $modal-content-bg;
-  border: 1px solid $modal-content-fallback-border-color; //old browsers 
fallback (ie8 etc)
-  border: 1px solid $modal-content-border-color;
-  border-radius: $border-radius-large;
-  @include box-shadow(0 3px 9px rgba(0,0,0,.5));
-  background-clip: padding-box;
-  // Remove focus outline from opened modal
-  outline: 0;
-}
-
-// Modal background
-.modal-backdrop {
-  position: fixed;
-  top: 0;
-  right: 0;
-  bottom: 0;
-  left: 0;
-  z-index: $zindex-modal-background;
-  background-color: $modal-backdrop-bg;
-  // Fade for backdrop
-  &.fade { @include opacity(0); }
-  &.in { @include opacity($modal-backdrop-opacity); }
-}
-
-// Modal header
-// Top section of the modal w/ title and dismiss
-.modal-header {
-  padding: $modal-title-padding;
-  border-bottom: 1px solid $modal-header-border-color;
-  min-height: ($modal-title-padding + $modal-title-line-height);
-}
-// Close icon
-.modal-header .close {
-  margin-top: -2px;
-}
-
-// Title text within header
-.modal-title {
-  margin: 0;
-  line-height: $modal-title-line-height;
-}
-
-// Modal body
-// Where all modal content resides (sibling of .modal-header and .modal-footer)
-.modal-body {
-  position: relative;
-  padding: $modal-inner-padding;
-}
-
-// Footer (for actions)
-.modal-footer {
-  padding: $modal-inner-padding;
-  text-align: right; // right align buttons
-  border-top: 1px solid $modal-footer-border-color;
-  @include clearfix(); // clear it in case folks use .pull-* classes on buttons
-
-  // Properly space out buttons
-  .btn + .btn {
-margin-left: 5px;
-margin-bottom: 0; // account for input[type="submit"] which gets the 
bottom margin like all other inputs
-  }
-  // but override that for button groups
-  .btn-group .btn + .btn {
-margin-left: -1px;
-  }
-  // and override it for block buttons as well
-  .btn-block + .btn-block {
-margin-left: 0;
-  }
-}
-
-// Measure scrollbar width for padding body during modal show/hide
-.modal-scrollbar-measure {
-  position: absolute;
-  top: -px;
-  width: 50px;
-  height: 50px;
-  overflow: scroll;
-}
-
-// Scale up the modal
-@media (min-width: $screen-sm-min) {
-  // Automatically set modal's width for larger viewports
-  .modal-dialog {
-width: $modal-md;
-margin: 30px auto;
-  }
-  .modal-content {
-@include box-shadow(0 5px 15px rgba(0,0,0,.5));
-  }
-
-  // Modal sizes
-  .modal-sm { width: $modal-sm; }
-}
-
-@media (min-width: $screen-md-min) {
-  .modal-lg { width: $modal-lg; }
-}

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/c678d90f/_sass/bootstrap-sass/bootstrap/_navbar.scss
--
diff --git a/_sass/bootstrap-sass/bootstrap/_navbar.scss 
b/_sass/bootstrap-sass/bootstrap/_navbar.scss
deleted file mode 100755
index 3b94d6f..000
--- a/_sass/bootstrap-sass/bootstrap/_navbar.scss
+++ /dev/null
@@ -1,659 +0,0 @@
-//
-// Navbars
-// --
-
-
-// Wrapper and base class
-//
-// Provide a static navbar from which we expand to create full-width, fixed, 
and
-// other navbar variations.
-
-.navbar {
-  position: relative;
-  min-height: $navbar-height; // Ensure a navbar always shows (e.g., without a 
.navbar-brand in collapsed mode)
-  m

[07/16] incubator-fluo-website git commit: Made font-size 16px

2016-10-28 Thread ctubbsii
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/9f43cdb5
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/tree/9f43cdb5
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/diff/9f43cdb5

Branch: refs/heads/gh-pages
Commit: 9f43cdb58c5d6bb12947f0d64d313c8d37ee865f
Parents: b33e5ce
Author: Mike Walch 
Authored: Fri Oct 28 15:26:54 2016 -0400
Committer: Mike Walch 
Committed: Fri Oct 28 15:26:54 2016 -0400

--
 css/fluo.scss | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/9f43cdb5/css/fluo.scss
--
diff --git a/css/fluo.scss b/css/fluo.scss
index 679bb8c..150608e 100644
--- a/css/fluo.scss
+++ b/css/fluo.scss
@@ -14,6 +14,7 @@ th, td {
 p { 
   line-height: 25px;
   padding-top: 5px;
+  font-size: 16px;
 }
 
 li { 



[14/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-recipes/1.0.0-incubating/transient/index.html
--
diff --git a/docs/fluo-recipes/1.0.0-incubating/transient/index.html 
b/docs/fluo-recipes/1.0.0-incubating/transient/index.html
index 287251f..a36a747 100644
--- a/docs/fluo-recipes/1.0.0-incubating/transient/index.html
+++ b/docs/fluo-recipes/1.0.0-incubating/transient/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-recipes/1.0.0-incubating/transient/";>
 
+
 Transient data | 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 @@
   
 
   
-
+
 
   
   
@@ -176,21 +190,5 @@ compacted again in 800 seconds.
 
   
 
-
-
-
-
-
-
-  (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-alpha-1/index.html
--
diff --git a/docs/fluo/1.0.0-alpha-1/index.html 
b/docs/fluo/1.0.0-alpha-1/index.html
index 3778d59..8433de9 100644
--- a/docs/fluo/1.0.0-alpha-1/index.html
+++ b/docs/fluo/1.0.0-alpha-1/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-alpha-1/";>
 
+
 Fluo 1.0.0-alpha-1 Documentation | 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 @@
   
 
   
-   

[12/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/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&&b>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&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(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===a.window},isNumeric:functi
 
on(a){return!n.isArray(a)&&a-parseFloat(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&&a.nodeName.toLowerCase()===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&&e.push(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&&i.push(d);else
 for(f in a)d=b(a[f],f,c),null!=d&&i.push(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&&b?!0:"array"===c||0===b||"number"==typeof
 b&&b>0&&b-1 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
 b=0,c=this.length;c>b;b++)if(this[b]===a)return 
b;return-1},L="checked|selected|async|a

[15/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-recipes/1.0.0-beta-2/accumulo-export/index.html
--
diff --git a/docs/fluo-recipes/1.0.0-beta-2/accumulo-export/index.html 
b/docs/fluo-recipes/1.0.0-beta-2/accumulo-export/index.html
index b651a66..947eccd 100644
--- a/docs/fluo-recipes/1.0.0-beta-2/accumulo-export/index.html
+++ b/docs/fluo-recipes/1.0.0-beta-2/accumulo-export/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-recipes/1.0.0-beta-2/accumulo-export/";>
 
+
 Accumulo Export Queue Specialization | 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 @@
   
 
   
-
+
 
   
   
@@ -159,21 +173,5 @@ pattern of deleting old data and inserting new data, 
consider extending
 
   
 
-
-
-
-
-
-
-  (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-recipes/1.0.0-beta-2/cfm/index.html
--
diff --git a/docs/fluo-recipes/1.0.0-beta-2/cfm/index.html 
b/docs/fluo-recipes/1.0.0-beta-2/cfm/index.html
index e4a4ad2..a22264a 100644
--- a/docs/fluo-recipes/1.0.0-beta-2/cfm/index.html
+++ b/docs/fluo-recipes/1.0.0-beta-2/cfm/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-recipes/1.0.0-beta-2/cfm/";>
 
+
 Collision Free Map Recipe | 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', 'pa

[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 { 

[08/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/tour/snapshot-isolation/index.html
--
diff --git a/tour/snapshot-isolation/index.html 
b/tour/snapshot-isolation/index.html
index 5fa76f6..8094f2b 100644
--- a/tour/snapshot-isolation/index.html
+++ b/tour/snapshot-isolation/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//tour/snapshot-isolation/";>
 
+
 Snapshot Isolation | 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 @@
   
 
   
-
+
 
   
   
@@ -138,21 +152,5 @@ if (e.keyCode == '39') { window.location = 
'/tour/snapshot-isolation-code/'; }
 
   
 
-
-
-
-
-
-
-  (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/tour/tx-logging/index.html
--
diff --git a/tour/tx-logging/index.html b/tour/tx-logging/index.html
index b05a02a..89ff704 100644
--- a/tour/tx-logging/index.html
+++ b/tour/tx-logging/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//tour/tx-logging/";>
 
+
 Transaction Logging | 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 @@
   
 
   
-
+
 
   
  

[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 @@
   

[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 +-
 pre-asf-download/index.html |   54 +-

[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";>
-https://fonts.googleapis.com/css?family=Merriweather"

[02/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/javascripts/bootstrap.min.js
--
diff --git a/javascripts/bootstrap.min.js b/javascripts/bootstrap.min.js
deleted file mode 100755
index 7c1561a..000
--- a/javascripts/bootstrap.min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v3.2.0 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires 
jQuery");+function(a){"use strict";function b(){var 
a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"};for(var c in b)if(void 
0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var
 c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var 
e=function(){c||a(d).trigger(a.support.transition.end)};return 
setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return
 a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 
0}})})}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var 
c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new 
d(this)),"string"==type
 of b&&e[b].call(c)})}var 
c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.2.0",d.prototype.close=function(b){function
 c(){f.detach().trigger("closed.bs.alert").remove()}var 
d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var
 
f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",c).emulateTransitionEnd(150):c())};var
 
e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return
 
a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.button"),f="object"==typeof 
b&&b;e||d.data("bs.button",e=new 
c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var 
c=function(b,d){this.$element=a(b)
 
,this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.2.0",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var
 
c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),d[e](null==f[b]?this.options[b]:f[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var
 a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var 
c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var
 
d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return
 a.fn.button=d,this},a(document).on("clic
 k.bs.button.data-api",'[data-toggle^="button"]',function(c){var 
d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()})}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof
 b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new 
c(this,f)),"number"==typeof 
b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var 
c=function(b,c){this.$element=a(b).on("keydown.bs.carousel",a.proxy(this.keydown,this)),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.2.0",c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},c.prototype.keydown=function(a){switch(a.which){case
 37:this.prev();brea
 k;case 
39:this.next();break;default:return}a.preventDefault()},c.prototype.cycle=function(b){return
 
b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return
 
this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.to=f

svn commit: r16721 - /dev/incubator/fluo/fluo-recipes/1.0.0-incubating-rc1/ /release/incubator/fluo/fluo-recipes/1.0.0-incubating/

2016-10-27 Thread ctubbsii
Author: ctubbsii
Date: Thu Oct 27 21:10:05 2016
New Revision: 16721

Log:
Release fluo-recipes-1.0.0-incubating

Relocate artifacts (using `svn mv $srcdir $destdir`) from
  
https://dist.apache.org/repos/dist/dev/incubator/fluo/fluo-recipes/1.0.0-incubating-rc1
to
  
https://dist.apache.org/repos/dist/release/incubator/fluo/fluo-recipes/1.0.0-incubating



Added:
release/incubator/fluo/fluo-recipes/1.0.0-incubating/
  - copied from r16720, 
dev/incubator/fluo/fluo-recipes/1.0.0-incubating-rc1/
Removed:
dev/incubator/fluo/fluo-recipes/1.0.0-incubating-rc1/



svn commit: r16720 - /release/incubator/fluo/fluo-recipes/

2016-10-27 Thread ctubbsii
Author: ctubbsii
Date: Thu Oct 27 21:07:54 2016
New Revision: 16720

Log:
Create directory for fluo-recipes releases

Added:
release/incubator/fluo/fluo-recipes/



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


[incubator-fluo] Git Push Summary

2016-10-05 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/1.0.0-incubating-rc0 [deleted] f7a7aaf19
  refs/heads/1.0.0-incubating-rc0-next [deleted] 62b659ba7
  refs/heads/1.0.0-incubating-rc1 [deleted] b07fbf8b7
  refs/heads/1.0.0-incubating-rc1-next [deleted] a19793e3f
  refs/heads/1.0.0-incubating-rc2 [deleted] e1dbc608c
  refs/heads/1.0.0-incubating-rc2-next [deleted] 2f9d3ee2d


[incubator-fluo] Git Push Summary

2016-10-05 Thread ctubbsii
Repository: incubator-fluo
Updated Tags:  refs/tags/rel/fluo-1.0.0-incubating [created] cb851a9bf


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

2016-10-05 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/master c1b4def7e -> 2f9d3ee2d


[maven-release-plugin] prepare release rel/fluo-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/e1dbc608
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/e1dbc608
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/e1dbc608

Branch: refs/heads/master
Commit: e1dbc608c67f31e804b59abd69d0bc530ca00f77
Parents: c1b4def
Author: Christopher Tubbs 
Authored: Tue Sep 27 16:34:33 2016 -0400
Committer: Christopher Tubbs 
Committed: Tue Sep 27 16:34:33 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/e1dbc608/modules/accumulo/pom.xml
--
diff --git a/modules/accumulo/pom.xml b/modules/accumulo/pom.xml
index 905b9bb..9be994e 100644
--- a/modules/accumulo/pom.xml
+++ b/modules/accumulo/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating-SNAPSHOT
+1.0.0-incubating
 ../../pom.xml
   
   fluo-accumulo

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

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

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

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

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

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

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/e1dbc608/modules/mini/pom.xml
--
diff --git a/modules/mini/pom.xml b/modules/mini/pom.xml
index 38a8f42..6c93cc3 100644
--- a/modules/mini/pom.xml
+++ b/modules/mini/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-project
-1.0.0-incubating-SNAPSHOT
+1.0.0-incubating
 ../../pom.xml
   
   fluo-mini

http://git-wip-us.apache

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

2016-10-05 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/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/master
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
 fluo-project
-1.0.0-incubating
+1.1.0-incubating-SNAPSHOT
 ../../pom.xml
   
   fluo-mini

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2f9d3ee2/pom.xml
-

svn commit: r16378 - /dev/incubator/fluo/fluo/1.0.0-incubating-rc2/ /release/incubator/fluo/fluo/1.0.0-incubating/

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

Log:
Release Apache Fluo 1.0.0-incubating (rc2) artifacts

Added:
release/incubator/fluo/fluo/1.0.0-incubating/
  - copied from r16377, dev/incubator/fluo/fluo/1.0.0-incubating-rc2/
Removed:
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/



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/



svn commit: r16243 - in /dev/incubator/fluo: build-resources/ fluo-parent/ fluo/ fluo/1.0.0-incubating-rc2/

2016-09-30 Thread ctubbsii
Author: ctubbsii
Date: Sat Oct  1 02:38:12 2016
New Revision: 16243

Log:
Stage fluo-1.0.0-incubating (rc2) to svn dev area

Added:
dev/incubator/fluo/build-resources/
dev/incubator/fluo/build-resources/.gitignore
dev/incubator/fluo/fluo/
dev/incubator/fluo/fluo-parent/
dev/incubator/fluo/fluo-parent/.gitignore
dev/incubator/fluo/fluo/.gitignore
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/MD5SUM
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/SHA1SUM

dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz

dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz.asc

dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-source-release.tar.gz

dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-source-release.tar.gz.asc

Added: dev/incubator/fluo/build-resources/.gitignore
==
--- dev/incubator/fluo/build-resources/.gitignore (added)
+++ dev/incubator/fluo/build-resources/.gitignore Sat Oct  1 02:38:12 2016
@@ -0,0 +1 @@
+# preserve directory, even if empty, for git-svn

Added: dev/incubator/fluo/fluo-parent/.gitignore
==
--- dev/incubator/fluo/fluo-parent/.gitignore (added)
+++ dev/incubator/fluo/fluo-parent/.gitignore Sat Oct  1 02:38:12 2016
@@ -0,0 +1 @@
+# preserve directory, even if empty, for git-svn

Added: dev/incubator/fluo/fluo/.gitignore
==
--- dev/incubator/fluo/fluo/.gitignore (added)
+++ dev/incubator/fluo/fluo/.gitignore Sat Oct  1 02:38:12 2016
@@ -0,0 +1 @@
+# preserve directory, even if empty, for git-svn

Added: dev/incubator/fluo/fluo/1.0.0-incubating-rc2/MD5SUM
==
--- dev/incubator/fluo/fluo/1.0.0-incubating-rc2/MD5SUM (added)
+++ dev/incubator/fluo/fluo/1.0.0-incubating-rc2/MD5SUM Sat Oct  1 02:38:12 2016
@@ -0,0 +1,2 @@
+ae0fc23b629d3062a6a18294509a30e7 *fluo-1.0.0-incubating-bin.tar.gz
+2b24390db824efa7df6babb3632ddd58 *fluo-1.0.0-incubating-source-release.tar.gz

Added: dev/incubator/fluo/fluo/1.0.0-incubating-rc2/SHA1SUM
==
--- dev/incubator/fluo/fluo/1.0.0-incubating-rc2/SHA1SUM (added)
+++ dev/incubator/fluo/fluo/1.0.0-incubating-rc2/SHA1SUM Sat Oct  1 02:38:12 
2016
@@ -0,0 +1,2 @@
+5f1541e14649a1765d43f175a1c537ec264c3d5c *fluo-1.0.0-incubating-bin.tar.gz
+20b7537a76af13423873cc8d4ba833e6d3df3924 
*fluo-1.0.0-incubating-source-release.tar.gz

Added: 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz
==
Binary files 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz 
(added) and 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz 
Sat Oct  1 02:38:12 2016 differ

Added: 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz.asc
==
--- 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz.asc
 (added)
+++ 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-bin.tar.gz.asc
 Sat Oct  1 02:38:12 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+iQIcBAABCgAGBQJX6thTAAoJEG8M2ucAtomdrr0QALl0miQ4jlifarTftcW8c9fH
+BjDRTkRCWSs8SwW7+hcMADrswNWHiDtX6xdM8zLEuADXM0JnP1toTsZ1zpauX7Wl
+/N3NA8xyg7RJkr4MdPEhRJAZHXJGJHCmWS64MfxaGxEkChLBzPLchgSjj1NLKXrx
+dnnkcjSLPIVjem3Kl5c5Zvfn1moLmBxIvNDBXxGf1WDqEZkua6SwKfJ6Waj84E9A
+L/P8woiPL8FDZegAqq5ftzosBeOJI1gJh8mC8IMD1bcIoNZ5QgBydjDT9B6YmI9c
+O/Rt0oD87ueaWvuNpSTfU31FyLRvRP/Bnc8qYfOv6a0G8d+KHaLXDym9lX+XhJUh
+dlrRDJ6zmYg39ozeN4J5q/KERCc/26fxGw2nOXKK6/n0hKSriDdbKilMuIutxlLp
+0wFOTSOseeD4BnfssmQ3Y5AkgFzkkR2l1Bzm+EyVSxy1B36JqgRfZ6WyRWoKPFSs
+YMCwXzgoOgMTKHB1WfnPNKzkJ0bYt7AmUU8NYLkVHGnNQ8FOhh3XHBmpNmj83rNE
+wAmjVx4Z9V1FYZGBW6XGxRsZ7bGsospRUm4hcqqN7sRIY2QYaoLqAt6KAFQ4p1kk
+AqYCfb2/5DmREh+NHJ3GE6iP+F3FovOPQ2d5AyIQnXZFC40Q4+nWv8+Qlgo2Dldm
+cpKTAe/Tb6kYW/7P5lU4
+=vzBI
+-END PGP SIGNATURE-

Added: 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-source-release.tar.gz
==
Binary files 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-source-release.tar.gz
 (added) and 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-source-release.tar.gz
 Sat Oct  1 02:38:12 2016 differ

Added: 
dev/incubator/fluo/fluo/1.0.0-incubating-rc2/fluo-1.0.0-incubating-source-release.tar.gz.asc
==
--- 
dev

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
 fluo-project
-1.0.0-incubating
+1

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
 fluo-project
-1.0.0-incubating
+1

incubator-fluo git commit: Add helper script for building release candidates

2016-09-15 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/master dcfd1a7e0 -> 2b1c45605


Add helper script for building release candidates

* Adds helper script to contrib/
* Fix tagNameFormat for release tag names


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

Branch: refs/heads/master
Commit: 2b1c45605ece0265647d5d7aec75c6ee977c7e73
Parents: dcfd1a7
Author: Christopher Tubbs 
Authored: Thu Sep 15 14:53:54 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Sep 15 14:53:54 2016 -0400

--
 contrib/create-release-candidate.sh | 288 +++
 pom.xml |   8 +
 2 files changed, 296 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/2b1c4560/contrib/create-release-candidate.sh
--
diff --git a/contrib/create-release-candidate.sh 
b/contrib/create-release-candidate.sh
new file mode 100755
index 000..c79db19
--- /dev/null
+++ b/contrib/create-release-candidate.sh
@@ -0,0 +1,288 @@
+#! /usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+cd "$(dirname "$0")/.." || exit 1
+scriptname=$(basename "$0")
+
+# check for gpg2
+hash gpg2 2>/dev/null && gpgCommand=gpg2 || gpgCommand=gpg
+
+# check if running in a color terminal
+terminalSupportsColor() {
+  local c; c=$(tput colors 2>/dev/null) || c=-1
+  [[ -t 1 ]] && [[ $c -ge 8 ]]
+}
+terminalSupportsColor && doColor=1 || doColor=0
+
+color() { local c; c=$1; shift; [[ $doColor -eq 1 ]] && echo -e 
"\\e[0;${c}m${*}\\e[0m" || echo "$@"; }
+red() { color 31 "$@"; }
+green() { color 32 "$@"; }
+yellow() { color 33 "$@"; }
+
+fail() { echo -e ' ' "$@"; exit 1; }
+runLog() { local o; o=$1 && shift && echo "$(green Running) $(yellow "$@" '>>' 
"$o")" && echo Running "$@" >> "$o" && eval "$@" >> "$o"; }
+run() { echo "$(green Running) $(yellow "$@")" && eval "$@"; }
+runOrFail() { run "$@" || fail "$(yellow "$@")" "$(red failed)"; }
+
+currentBranch() { local b; b=$(git symbolic-ref -q HEAD) && echo 
"${b##refs/heads/}"; }
+
+cacheGPG() {
+  # make sure gpg agent has key cached
+  # first clear cache, to reset timeouts (best attempt)
+  { hash gpg-connect-agent && gpg-connect-agent reloadagent /bye; } &>/dev/null
+  # TODO prompt for key instead of using default?
+  local TESTFILE; TESTFILE=$(mktemp --tmpdir 
"${USER}-gpgTestFile-.txt")
+  [[ -r $TESTFILE ]] && "$gpgCommand" --sign "${TESTFILE}" && rm -f 
"${TESTFILE}" "${TESTFILE}.gpg"
+}
+
+prompter() {
+  # $1 description; $2 pattern to validate against
+  local x
+  read -r -p "Enter the $1: " x
+  until eval "[[ \$x =~ ^$2\$ ]]"; do
+echo "  $(red "$x") is not a proper $1" 1>&2
+read -r -p "Enter the $1: " x
+  done
+  echo "$x"
+}
+
+pretty() { local f; f=$1; shift; git log "--pretty=tformat:$f" "$@"; }
+gitCommits() { pretty %H "$@"; }
+gitCommit()  { gitCommits -n1 "$@"; }
+gitSubject() { pretty %s "$@"; }
+
+createEmail() {
+  # $1 version (optional); $2 rc seqence num (optional); $3 staging repo num 
(optional)
+  local ver; [[ -n $1 ]] && ver=$1 || ver=$(prompter 'version to be released 
(eg. x.y.z)' '[0-9]+[.][0-9]+[.][0-9]+([-]incubating)?')
+  local rc; [[ -n $2 ]] && rc=$2 || rc=$(prompter 'release candidate sequence 
number (eg. 1, 2, etc.)' '[0-9]+')
+  local stagingrepo; [[ -n $3 ]] && stagingrepo=$3 || stagingrepo=$(prompter 
'staging repository number from 
https://repository.apache.org/#stagingRepositories' '[0-9]+')
+
+  local branch; branch=$ver-rc$rc
+  local commit; commit=$(gitCommit "$branch") || exit 1
+  local tag; tag=rel/fluo-$ver
+  echo
+  yellow  "IMPORTANT!! IMPORTANT!! IMPORTANT!! IMPORTANT!! IMPORTANT!! 
IMPORTANT!!"
+  echo
+  echo"Don't forget to push a branch named $(green "$branch") with"
+  echo"its head at $(green "${commit:0:7}") so others can review 
using:"
+  echo" 

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

2016-09-14 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/1.0.0-incubating-rc0 [created] f7a7aaf19
  refs/heads/1.0.0-incubating-rc0-next [created] 62b659ba7


[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/62b659ba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/62b659ba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/62b659ba

Branch: refs/heads/1.0.0-incubating-rc0-next
Commit: 62b659ba7518ed99d430874bdee472586645a568
Parents: f7a7aaf
Author: Christopher Tubbs 
Authored: Wed Sep 14 22:23:19 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Sep 14 22:23:19 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/62b659ba/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/62b659ba/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/62b659ba/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/62b659ba/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/62b659ba/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/62b659ba/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/62b659ba/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/62b659ba/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
 fluo-project
-1.0.0-incubating
+1

incubator-fluo git commit: Avoid use of auxiliary class, and other warnings

2016-09-14 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/master cb78079bf -> dcfd1a7e0


Avoid use of auxiliary class, and other warnings

* Move auxiliary AsciiSequence class to own file
* Remove redundant type args (use diamond)
* Suppress warnings in thrift classes


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

Branch: refs/heads/master
Commit: dcfd1a7e0e98a6ad4581cdba2c297e1951af849d
Parents: cb78079
Author: Christopher Tubbs 
Authored: Tue Sep 13 18:28:32 2016 -0400
Committer: Christopher Tubbs 
Committed: Tue Sep 13 18:28:32 2016 -0400

--
 .../org/apache/fluo/api/data/AsciiSequence.java | 53 
 .../org/apache/fluo/api/data/BytesTest.java | 37 --
 .../apache/fluo/core/impl/TransactionImpl.java  |  2 +-
 .../apache/fluo/core/thrift/OracleService.java  |  1 +
 .../org/apache/fluo/core/thrift/Stamps.java |  1 +
 .../fluo/core/worker/finder/hash/ScanTask.java  | 13 +++--
 6 files changed, 62 insertions(+), 45 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/dcfd1a7e/modules/api/src/test/java/org/apache/fluo/api/data/AsciiSequence.java
--
diff --git 
a/modules/api/src/test/java/org/apache/fluo/api/data/AsciiSequence.java 
b/modules/api/src/test/java/org/apache/fluo/api/data/AsciiSequence.java
new file mode 100644
index 000..8ecda71
--- /dev/null
+++ b/modules/api/src/test/java/org/apache/fluo/api/data/AsciiSequence.java
@@ -0,0 +1,53 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more 
contributor license
+ * agreements. See the NOTICE file distributed with this work for additional 
information regarding
+ * copyright ownership. The ASF licenses this file to You under the Apache 
License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance with the 
License. You may obtain a
+ * copy of the License at
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software 
distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
KIND, either express
+ * or implied. See the License for the specific language governing permissions 
and limitations under
+ * the License.
+ */
+package org.apache.fluo.api.data;
+
+import java.nio.charset.StandardCharsets;
+
+class AsciiSequence implements CharSequence {
+
+
+  private final int len;
+  private final int offset;
+  private final byte[] chars;
+
+  public AsciiSequence(byte[] chars, int offset, int len) {
+this.len = len;
+this.offset = offset;
+this.chars = chars;
+  }
+
+  public AsciiSequence(String s) {
+chars = s.getBytes(StandardCharsets.US_ASCII);
+len = chars.length;
+offset = 0;
+  }
+
+  @Override
+  public int length() {
+return len;
+  }
+
+  @Override
+  public char charAt(int index) {
+return (char) chars[index];
+  }
+
+  @Override
+  public CharSequence subSequence(int start, int end) {
+return new AsciiSequence(chars, offset + start, end - start);
+  }
+
+}

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/dcfd1a7e/modules/api/src/test/java/org/apache/fluo/api/data/BytesTest.java
--
diff --git a/modules/api/src/test/java/org/apache/fluo/api/data/BytesTest.java 
b/modules/api/src/test/java/org/apache/fluo/api/data/BytesTest.java
index 8a3baf2..641c9bf 100644
--- a/modules/api/src/test/java/org/apache/fluo/api/data/BytesTest.java
+++ b/modules/api/src/test/java/org/apache/fluo/api/data/BytesTest.java
@@ -26,43 +26,6 @@ import org.apache.fluo.api.data.Bytes;
 import org.junit.Assert;
 import org.junit.Test;
 
-class AsciiSequence implements CharSequence {
-
-
-  private final int len;
-  private final int offset;
-  private final byte[] chars;
-
-  public AsciiSequence(byte[] chars, int offset, int len) {
-this.len = len;
-this.offset = offset;
-this.chars = chars;
-  }
-
-  public AsciiSequence(String s) {
-chars = s.getBytes(StandardCharsets.US_ASCII);
-len = chars.length;
-offset = 0;
-  }
-
-  @Override
-  public int length() {
-return len;
-  }
-
-  @Override
-  public char charAt(int index) {
-return (char) chars[index];
-  }
-
-  @Override
-  public CharSequence subSequence(int start, int end) {
-return new AsciiSequence(chars, offset + start, end - start);
-  }
-
-}
-
-
 /**
  * Unit test for {@link Bytes}
  */

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/dcfd1a7e/modules/core/src/main/java/org/apache

[incubator-fluo] Git Push Summary

2016-08-12 Thread ctubbsii
Repository: incubator-fluo
Updated Tags:  refs/tags/rel/build-resources-1.0.0-incubating [created] 
9c3f43fbb
  refs/tags/rel/fluo-parent-1-incubating [created] 8b8ef44e3


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

2016-08-12 Thread ctubbsii
[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/95c48e3f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/95c48e3f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/95c48e3f

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

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/95c48e3f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 1edefeb..b95bad9 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 (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
-HEAD
+rel/fluo-parent-1-incubating
 https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
   
   



svn commit: r14780 - /dev/incubator/fluo/build-resources/ /dev/incubator/fluo/fluo-parent/ /release/incubator/fluo/build-resources/ /release/incubator/fluo/fluo-parent/

2016-08-12 Thread ctubbsii
Author: ctubbsii
Date: Thu Aug 11 22:16:53 2016
New Revision: 14780

Log:
Move fluo releases to mirrors

Releases build-resources-1.0.0-incubating and fluo-parent-1-incubating

Added:
release/incubator/fluo/build-resources/
  - copied from r14779, dev/incubator/fluo/build-resources/
release/incubator/fluo/fluo-parent/
  - copied from r14779, dev/incubator/fluo/fluo-parent/
Removed:
dev/incubator/fluo/build-resources/
dev/incubator/fluo/fluo-parent/



[incubator-fluo] Git Push Summary

2016-08-11 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/build-resources-1.0.0-rc1 [deleted] 02d4ea233
  refs/heads/build-resources-1.0.0-rc1-next [deleted] 055c0d0fc
  refs/heads/fluo-parent-1-rc1 [deleted] 4473de40f
  refs/heads/fluo-parent-1-rc2 [deleted] e9ed4334d
  refs/heads/fluo-parent-1-rc3 [deleted] 95c48e3f1
  refs/heads/fluo-parent-1-rc3-next [deleted] a2855c495


[2/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/055c0d0f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/055c0d0f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/055c0d0f

Branch: refs/heads/build-resources
Commit: 055c0d0fcc1d6f0e59c948cfc49a28f2f204ab89
Parents: 02d4ea2
Author: Christopher Tubbs 
Authored: Thu Aug 4 15:10:11 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 15:10:11 2016 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/055c0d0f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 5e4a94f..6717c6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
   org.apache.fluo
   build-resources
-  1.0.0-incubating
+  1.0.1-incubating-SNAPSHOT
   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
-rel/build-resources-1.0.0-incubating
+HEAD
 https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
   
   



[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
   
   



[5/6] incubator-fluo git commit: Update to 1-incubating parent POM

2016-08-11 Thread ctubbsii
Update to 1-incubating parent POM


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

Branch: refs/heads/master
Commit: 9efe748e579d91018d00f311f8a951c599ea297a
Parents: f8d0af6
Author: Christopher Tubbs 
Authored: Mon Jul 25 17:53:51 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 15:56:17 2016 -0400

--
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/9efe748e/pom.xml
--
diff --git a/pom.xml b/pom.xml
index bc7b3b1..8cfcbfd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.fluo
 fluo-parent
-1-SNAPSHOT
+1-incubating
   
   fluo-project
   1.0.0-incubating-SNAPSHOT



[6/6] incubator-fluo git commit: Merge remote-tracking branch 'ctubbsii/update-to-release-parent-pom'

2016-08-11 Thread ctubbsii
Merge remote-tracking branch 'ctubbsii/update-to-release-parent-pom'


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

Branch: refs/heads/master
Commit: 7915c5df43fc595e62a4295c1a15ec349ae82a67
Parents: 6cec148 9efe748
Author: Christopher Tubbs 
Authored: Thu Aug 11 18:08:23 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 11 18:08:23 2016 -0400

--
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




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

2016-08-11 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/build-resources 422d3b18c -> 055c0d0fc
  refs/heads/fluo-parent e1d18200f -> a2855c495
  refs/heads/master 6cec1483d -> 7915c5df4


[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
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
   
   



svn commit: r14697 - /dev/incubator/fluo/KEYS /release/incubator/fluo/KEYS

2016-08-07 Thread ctubbsii
Author: ctubbsii
Date: Mon Aug  8 01:37:57 2016
New Revision: 14697

Log:
Move fluo KEYS file from staging to release area.

Added:
release/incubator/fluo/KEYS
  - copied unchanged from r14696, dev/incubator/fluo/KEYS
Removed:
dev/incubator/fluo/KEYS



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

2016-08-07 Thread ctubbsii
Author: ctubbsii
Date: Mon Aug  8 01:36:41 2016
New Revision: 14696

Log:
Create directory for fluo-incubating releases

Added:
release/incubator/fluo/



svn commit: r14673 - in /dev/incubator/fluo: ./ build-resources/ build-resources/1.0.0-incubating/ fluo-parent/ fluo-parent/1-incubating/

2016-08-05 Thread ctubbsii
Author: ctubbsii
Date: Fri Aug  5 23:34:58 2016
New Revision: 14673

Log:
Stage fluo incubating release candidates

* Includes KEYS for release manager
* build-resources-1.0.0-incubating (rc1)
* fluo-parent-1-incubating (rc3)

Added:
dev/incubator/fluo/KEYS
dev/incubator/fluo/build-resources/
dev/incubator/fluo/build-resources/1.0.0-incubating/
dev/incubator/fluo/build-resources/1.0.0-incubating/MD5SUM
dev/incubator/fluo/build-resources/1.0.0-incubating/SHA1SUM

dev/incubator/fluo/build-resources/1.0.0-incubating/build-resources-1.0.0-incubating-source-release.tar.gz

dev/incubator/fluo/build-resources/1.0.0-incubating/build-resources-1.0.0-incubating-source-release.tar.gz.asc
dev/incubator/fluo/fluo-parent/
dev/incubator/fluo/fluo-parent/1-incubating/
dev/incubator/fluo/fluo-parent/1-incubating/MD5SUM
dev/incubator/fluo/fluo-parent/1-incubating/SHA1SUM

dev/incubator/fluo/fluo-parent/1-incubating/fluo-parent-1-incubating-source-release.tar.gz

dev/incubator/fluo/fluo-parent/1-incubating/fluo-parent-1-incubating-source-release.tar.gz.asc

Added: dev/incubator/fluo/KEYS
==
--- dev/incubator/fluo/KEYS (added)
+++ dev/incubator/fluo/KEYS Fri Aug  5 23:34:58 2016
@@ -0,0 +1,76 @@
+This file contains the GPG keys needed to verify Apache Fluo releases. To
+update this file, execute the following command after changing the value of
+MYKEY to the key being added:
+{ MYKEY=; echo; gpg --list-public-keys $MYKEY; gpg --export -a 
--export-options no-export-attributes,export-minimal $MYKEY; } >> KEYS
+
+pub   4096R/00B6899D 2012-10-13 [expires: 2020-01-12]
+uid  Christopher L Tubbs II (Christopher) 
+uid  Christopher L Tubbs II (Developer) 
+uid  Christopher L Tubbs II (Developer) 

+sub   4096R/C23D3DA9 2012-10-13 [expires: 2020-01-12]
+
+-BEGIN PGP PUBLIC KEY BLOCK-
+Version: GnuPG v2.0.14 (GNU/Linux)
+
+mQINBFB5PSEBEADLpUx7jV1yDxmCtYEfuN+hnes9dpZFBJmvfo0gMy676cpmkrD9
+J1oRmaC+0XPZHso8+F8IsWQdxV71tEdaWDaFJ0B6v+u6tSxu0tM4cxKB+NeFbgLt
+HAheqhZe6tP4ko3VllcERRSXLq9EPWvHYBjgIx0ye9KjYKnqleMqdCfCuKIFW88v
+g5OAvIVtvmItbj8oY3tX6QQiHjOCNuBrWJwCwtShC+U9GJF2dPahM6abEjb7jibF
+SXMpF2DJuID6D/x5/5iyew4PgVHBUQc6gGa9TC+LNcOJV8Ty7qNryjMuxopGU8SF
+v20VZ6LDnI/EDcubeJVJloW1j6pYfO2O1APVhcr36iuCKECvuW8O2bhJXxmsCijt
+02P2B87BpmORps5JeZwyVHPA7RGDlXJZ9Srdbn4nNJBqW4JD3MtLkSIYF+Pr4x34
+xSBw3OKeHa7ubBw79FAonvP3soSxb5nzxkmOpoNUYVuQ7gjiZY8Z9AurtZY4mq18
+it0eHraFLK15+59zptwrq4VJ2BT6K9kmx4dFy/C4pDMGBdGPexcLEE+1ugAVZuof
+KqR0S72mgwaYzSBY/QYXPgI/GinIaruxcdB+F07SL/VEPODx4P3/Pvb5G2gDiQFv
+9pAGNskOi0kDVGjLH+o9GXQCdJYeZs2rW99t2kVMvGVQJo20P0w9cQeLwQARAQAB
+tDlDaHJpc3RvcGhlciBMIFR1YmJzIElJIChDaHJpc3RvcGhlcikgPGN0dWJic2lp
+QGdtYWlsLmNvbT6JAkAEEwEKACoCGwMFCwkIBwMFFQoJCAsFFgIDAQACHgECF4AC
+GQEFAlaj7OoFCQ2iE28ACgkQbwza5wC2iZ0unw//UMklaiqJvFuW1hGhw50cqgdY
+kKV4DAFC5XruiuktVRxpWRAan6sNgbv3tdMX6jy0phjRIMxVtz8+iZXDOrjTwvHC
+FdcqKW21WLKCHoX8TPElTTafZvb3soPvxCPdB3S89IPdgySs6vaN5bkwScnEPa7r
+g18IqhPJfkZuIAkHxhlePgBRulZxEg2Du1a+75trP5zayUgnyJ4lZQL8WMhwSPOQ
+/jnqLBsOt4GmsI9OHTCTEeEUg8aDaWzVVJhm9ZN6TxKDEhjd5E3SdhYfQPD8QHWz
+LY+0rbELHnvJs9JkCt0NwFP5EF+Qq603qhHmelyCUOOAn63rwvetq9e7xTRpwT7Z
+4nu26jjOfvpMvVDKFHAfNJwPBCC4vbVZJZDDW+58UHCDtGz7QgPq3qdosciTqJ+G
++S5lomwZ5CwgLaEpfp/RAI+fUIXaCGbHeKr34c8ut/+2+dUPy65QxPPWsfvixTdJ
+WuLidlXE/CG/nWTg6rbfmOMlT6vdzdyT57m+gOjgMfUL2951WadJrFgkEvAVBgJP
+oXPZ0iTHY+Z8HXE5DdSANP8/ukEpFD08YqT52AKMAIBj9sN79RauzoHnv3Z8oZ1E
+HjzCwAQETjbOuQD5vx4OpUBUgJ/SLZalG67AEGmaA3EGTGNyxtpKymN6KKi64yph
+V4g2kbiYsXywu06KpP20OENocmlzdG9waGVyIEwgVHViYnMgSUkgKERldmVsb3Bl
+cikgPGN0dWJic2lpQGFwYWNoZS5vcmc+iQI9BBMBCgAnAhsDBQsJCAcDBRUKCQgL
+BRYCAwEAAh4BAheABQJWo+zqBQkNohNvAAoJEG8M2ucAtomdRQYQAKdF5gW/Ot+E
+Az7jGZ9bcwyJAlhwJDiv5TUQspzZKLZzFawUpVQakWK8kdWXCGZc3DF8dAVFosFe
+GgFh5lxH+KI1t5S+98ZymHWbt3xVBbQD+JHlcSAPKbih1yc2ISn6kBbkTIv5BNXb
+W4Y/QEfmTgFiml8vDjAh0zQgZ50aEv2hd7NCxhRZAYo7yZvoaWaRI60ZArv7/Gd7
+d5DFhSf0GhPQy4T9Auf6LKcPZCBJSLWis+/vfhG8gWIKsrgq35tEd4PpIWMM2o6Z
+66Rvgfv08t1IMAHFRHpG/Bn90l7MIDwiVyevErzTJoM1mLxni/7behkNmmWQpgTq
+ZZe49y5aKsLQSCemWj6LecdkhINks9fpNnOlbs5PeIocxlWD0eFZBAMr0aL3i1Z1
+45vcKTaTfUPQiVOktEawsqX91kqjSKBis1jG7NdZbIMKppIaaOHV7Y/3Ceczkvr4
+6PR706M1QeWh4wNB2Wp7akEwRKlx5ikxavz1tOpV574+WHLzwnQozjoz702XNp7Q
+ANe7PCzPU7Uqy2BumoCXKEY+2rjjVUufmkkOjNdiJYQczExcolZc6/daxLsIDbWp
+PYY1227pP4B949OWJe5p/Gyrk+dV4zv1v4ecV0Q/0YbfBYshD7gbl5vsJlZqyLOF
+g2ChO9A02L/1NgXtfjdn5IwVS9SZHi9tuQINBFB5PSEBEADLtbVoaVljFy6J2gwZ
+JxbLOW82iZOT/4tF3Z3686hfqnslKUpG6bD5igUWeBeqIHMyjk0S2STDtf603gJR
+LZJWevewC1nRj3E7u3vEcQ/uNGssKQs+5hBFiQ6N/3vWZgGXkzTXQPvv9sP2XSC2
+RgqB6xNRMCFsEKLa+v/EEB+k2lbCHruLNi63GOY+9qCbUhKpa6N8n4LEdMYxusuq
+fZzde7rESuxHtNkwVrLPiTgxN2wx6Ygs+BI4RCW4eTUls+ktlMkDsNse8HYOfWUd
+FzWnm/cD810+ajZi7mi0SNwJxpw5+oaIgKeBptBE0RexJsC5KEyYtZftdDE8O3Cl
+kb1GNH72OrypMbQLccMu0pQrA8nvQkUk6XG/IEst/xKMPDsL9kEJ68kpnL2ei/UU
+0MWQVQpPo3Jjd7PGmBo9uHmAFr1U/ZtsqrC82+tzCWUfnzi5OQ1XiK2nY/

svn commit: r14672 - /dev/incubator/fluo/

2016-08-05 Thread ctubbsii
Author: ctubbsii
Date: Fri Aug  5 23:12:24 2016
New Revision: 14672

Log:
Create directory for fluo incubating release candidates

Added:
dev/incubator/fluo/



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

2016-08-04 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/fluo-parent-1-rc3 [created] 95c48e3f1
  refs/heads/fluo-parent-1-rc3-next [created] a2855c495


[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-1-rc3-next
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}
 
   
 



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

2016-08-04 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/055c0d0f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/055c0d0f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/055c0d0f

Branch: refs/heads/build-resources-1.0.0-rc1-next
Commit: 055c0d0fcc1d6f0e59c948cfc49a28f2f204ab89
Parents: 02d4ea2
Author: Christopher Tubbs 
Authored: Thu Aug 4 15:10:11 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 15:10:11 2016 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/055c0d0f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 5e4a94f..6717c6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
   org.apache.fluo
   build-resources
-  1.0.0-incubating
+  1.0.1-incubating-SNAPSHOT
   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
-rel/build-resources-1.0.0-incubating
+HEAD
 https://git-wip-us.apache.org/repos/asf?p=incubator-fluo.git
   
   



[incubator-fluo] Git Push Summary

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


[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



[4/5] incubator-fluo git commit: Fix m2e settings

2016-08-04 Thread ctubbsii
Fix m2e settings


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

Branch: refs/heads/build-resources
Commit: 6849005fd7cb21226b437298b979a4e7f24b848d
Parents: 065bf9d
Author: Christopher Tubbs 
Authored: Thu Aug 4 14:46:29 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 14:46:29 2016 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/6849005f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 5d1ed73..83753e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -271,5 +271,84 @@
 
   
 
+
+  m2e
+  
+
+  m2e.version
+
+  
+  
+
+  
+
+
+  org.eclipse.m2e
+  lifecycle-mapping
+  1.0.0
+  
+
+  
+
+  
+org.apache.maven.plugins
+maven-remote-resources-plugin
+[0,)
+
+  process
+
+  
+  
+
+  
+
+
+  
+com.github.ekryd.sortpom
+sortpom-maven-plugin
+[0,)
+
+  sort
+  verify
+
+  
+  
+
+  
+
+
+  
+org.apache.rat
+apache-rat-plugin
+[0,)
+
+  check
+
+  
+  
+
+  
+
+
+  
+com.github.koraktor
+mavanagaiata
+[0,)
+
+  commit
+
+  
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
   
 



[2/5] incubator-fluo git commit: Update resources for ASF

2016-08-04 Thread ctubbsii
Update resources for ASF


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

Branch: refs/heads/build-resources
Commit: 7b6766aabb9fc13608ebdd7f0b52ead59f0f089b
Parents: 613cf66
Author: Christopher Tubbs 
Authored: Wed Aug 3 19:47:35 2016 -0400
Committer: Christopher Tubbs 
Committed: Wed Aug 3 19:50:13 2016 -0400

--
 .travis.yml |   2 -
 DISCLAIMER  |   9 +
 LICENSE |   5 +-
 NOTICE  |   6 +-
 README.md   |  40 +-
 pom.xml | 561 +++
 src/main/java/io/fluo/resources/Resources.java  |  23 -
 .../org/apache/fluo/resources/Resources.java|  28 +
 .../io/fluo/resources/eclipse-formatter.xml | 350 
 .../io/fluo/resources/java-checkstyle.xml   | 171 --
 .../apache/fluo/resources/eclipse-formatter.xml | 353 
 .../apache/fluo/resources/java-checkstyle.xml   | 174 ++
 12 files changed, 674 insertions(+), 1048 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7b6766aa/.travis.yml
--
diff --git a/.travis.yml b/.travis.yml
index 0595e1d..18b277f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,6 +2,4 @@ language: java
 
 jdk:
   - oraclejdk8
-  - oraclejdk7
-  - openjdk7
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7b6766aa/DISCLAIMER
--
diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 000..d028686
--- /dev/null
+++ b/DISCLAIMER
@@ -0,0 +1,9 @@
+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.

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7b6766aa/LICENSE
--
diff --git a/LICENSE b/LICENSE
index 8dada3e..d645695 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,3 +1,4 @@
+
  Apache License
Version 2.0, January 2004
 http://www.apache.org/licenses/
@@ -178,7 +179,7 @@
APPENDIX: How to apply the Apache License to your work.
 
   To apply the Apache License to your work, attach the following
-  boilerplate notice, with the fields enclosed by brackets "{}"
+  boilerplate notice, with the fields enclosed by brackets "[]"
   replaced with your own identifying information. (Don't include
   the brackets!)  The text should be enclosed in the appropriate
   comment syntax for the file format. We also recommend that a
@@ -186,7 +187,7 @@
   same "printed page" as the copyright notice for easier
   identification within third-party archives.
 
-   Copyright {} {name of copyright owner}
+   Copyright [] [name of copyright owner]
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7b6766aa/NOTICE
--
diff --git a/NOTICE b/NOTICE
index d2fa8fb..749e831 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1 +1,5 @@
-Copyright 2016 fluo.io contributors
+Apache Fluo Build Resources (incubating)
+Copyright 2016 The Apache Software Foundation.
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7b6766aa/README.md
--
diff --git a/README.md b/README.md
index 76f75ac..9d30031 100644
--- a/README.md
+++ b/README.md
@@ -12,32 +12,20 @@
   limitations under the License.
 -->
 
-[![Build Status][ti]][tl] [![Maven Central][mi]][ml] [![Issues][ii]][il]
-[![Forks][fi]][fl] [![Stars][si]][sl] [![Apache License][li]][ll]
+[![Build Status][ti]][tl] [![Maven Central][mi]][ml] [![Apache 
License][li]][ll]
 
-# Resources
+# Apache Fluo Build Resources (inc

[1/5] incubator-fluo git commit: Update resources for ASF

2016-08-04 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/build-resources 613cf66b7 -> 422d3b18c


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7b6766aa/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml
--
diff --git a/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml 
b/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml
new file mode 100644
index 000..ebff4d6
--- /dev/null
+++ b/src/main/resources/org/apache/fluo/resources/eclipse-formatter.xml
@@ -0,0 +1,353 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7b6766aa/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
--
diff --git a/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml 
b/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
new file mode 100644
index 000..10d929f
--- /dev/null
+++ b/src/main/resources/org/apache/fluo/resources/java-checkstyle.xml
@@ -0,0 +1,174 @@
+
+
+http://www.puppycrawl.com/dtds/configuration_1_3.dtd";>
+
+  
+
+  
+  
+  
+
+  
+  
+  
+
+  
+
+  
+
+
+
+  
+  
+  
+
+
+  
+  
+  
+  
+
+
+  
+  ftp://"/>
+
+
+
+
+
+  
+  
+
+
+
+  
+
+
+
+  
+  
+
+
+  
+  
+  
+  
+  
+  
+
+
+
+
+
+
+
+
+
+  
+
+
+  
+  
+
+
+  
+  
+
+
+  
+  
+
+
+  
+
+
+  
+  
+
+
+  
+  
+
+
+  
+  
+  
+  
+
+
+  
+  
+
+
+  
+  
+
+
+
+  
+  
+  
+  
+
+
+  
+  
+  
+
+
+
+
+  
+  
+  
+
+
+
+  
+  
+
+
+  
+
+
+  
+  
+
+
+
+
+  
+  
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+
+
+  
+  
+
+
+  
+




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

2016-08-04 Thread ctubbsii
Fix README license header


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

Branch: refs/heads/build-resources
Commit: 422d3b18c0f79f351eee86d5e3c01d6da745b082
Parents: 6849005
Author: Christopher Tubbs 
Authored: Thu Aug 4 15:05:15 2016 -0400
Committer: Christopher Tubbs 
Committed: Thu Aug 4 15:05:15 2016 -0400

--
 README.md | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/422d3b18/README.md
--
diff --git a/README.md b/README.md
index 3bb46b0..9c095dc 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,10 @@
 

[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
+  fluo-dev+unsubscr...@googlegroups

[05/17] incubator-fluo git commit: Rename to build-resources

2016-08-03 Thread ctubbsii
Rename to build-resources


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

Branch: refs/heads/build-resources
Commit: 7a83e5ef928b2affc6e470c80b4964615f0eca74
Parents: a050005
Author: Christopher Tubbs 
Authored: Wed Feb 24 15:21:45 2016 -0500
Committer: Christopher Tubbs 
Committed: Wed Feb 24 15:21:45 2016 -0500

--
 README.md   |  26 +-
 pom.xml |  20 +-
 .../fluo/build-resources/eclipse-formatter.xml  | 350 +++
 .../io/fluo/build-resources/java-checkstyle.xml | 180 ++
 .../io/fluo/build-tools/eclipse-formatter.xml   | 350 ---
 .../io/fluo/build-tools/java-checkstyle.xml | 180 --
 6 files changed, 553 insertions(+), 553 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7a83e5ef/README.md
--
diff --git a/README.md b/README.md
index 5b41a42..56d5a07 100644
--- a/README.md
+++ b/README.md
@@ -15,12 +15,12 @@
 [![Build Status][ti]][tl] [![Maven Central][mi]][ml] [![Issues][ii]][il]
 [![Forks][fi]][fl] [![Stars][si]][sl] [![Apache License][li]][ll]
 
-# Build Tools
+# Build Resources
 
 View documentation at:
 http://fluo.io
 
-Build tools for fluo-io projects
+Build resources 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,
@@ -29,15 +29,15 @@ 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
+[ti]: https://travis-ci.org/fluo-io/build-resources.svg?branch=master
+[tl]: https://travis-ci.org/fluo-io/build-resources
+[mi]: 
https://maven-badges.herokuapp.com/maven-central/io.fluo/build-resources/badge.svg
+[ml]: https://maven-badges.herokuapp.com/maven-central/io.fluo/build-resources
+[ii]: https://img.shields.io/github/issues/fluo-io/build-resources.svg
+[il]: https://github.com/fluo-io/build-resources/issues
+[fi]: https://img.shields.io/github/forks/fluo-io/build-resources.svg
+[fl]: https://github.com/fluo-io/build-resources/network
+[si]: https://img.shields.io/github/stars/fluo-io/build-resources.svg
+[sl]: https://github.com/fluo-io/build-resources/stargazers
 [li]: http://img.shields.io/badge/license-ASL-blue.svg
-[ll]: https://github.com/fluo-io/build-tools/blob/master/LICENSE
+[ll]: https://github.com/fluo-io/build-resources/blob/master/LICENSE

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7a83e5ef/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 0064c9e..985a5d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,12 +7,12 @@
 9
   
   io.fluo
-  build-tools
+  build-resources
   1.0.0-SNAPSHOT
   jar
-  Fluo.io Build Tools
-  Build tools for fluo.io projects
-  https://github.com/fluo-io/build-tools
+  Fluo.io Build Resources
+  Build resources for fluo.io projects
+  https://github.com/fluo-io/build-resources
   
 Fluo.io
 http://fluo.io
@@ -35,18 +35,18 @@
   
   
   
-scm:git:https://github.com/fluo-io/build-tools.git
-
scm:git:g...@github.com:fluo-io/build-tools.git
+
scm:git:https://github.com/fluo-io/build-resources.git
+
scm:git:g...@github.com:fluo-io/build-resources.git
 HEAD
-https://github.com/fluo-io/build-tools
+https://github.com/fluo-io/build-resources
   
   
 GitHub
-https://github.com/fluo-io/build-tools/issues
+https://github.com/fluo-io/build-resources/issues
   
   
-
src/main/resources/io/fluo/build-tools/java-checkstyle.xml
-
src/main/resources/io/fluo/build-tools/eclipse-formatter.xml
+
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

http://git-wip-us.apache.org/repos/asf/in

[11/17] incubator-fluo git commit: Rename project and match maven central rules

2016-08-03 Thread ctubbsii
Rename project and match maven central 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/301c1fcd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/301c1fcd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/301c1fcd

Branch: refs/heads/build-resources
Commit: 301c1fcdaed358073f619cc9aa1a90c590079687
Parents: 7ddc991
Author: Christopher Tubbs 
Authored: Thu Feb 25 17:40:38 2016 -0500
Committer: Christopher Tubbs 
Committed: Thu Feb 25 17:40:38 2016 -0500

--
 README.md   |  24 +-
 pom.xml |  24 +-
 src/main/java/io/fluo/resources/Resources.java  |  23 ++
 .../fluo/build-resources/eclipse-formatter.xml  | 350 ---
 .../io/fluo/build-resources/java-checkstyle.xml | 179 --
 .../io/fluo/resources/eclipse-formatter.xml | 350 +++
 .../io/fluo/resources/java-checkstyle.xml   | 179 ++
 7 files changed, 579 insertions(+), 550 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/301c1fcd/README.md
--
diff --git a/README.md b/README.md
index 56d5a07..76f75ac 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@
 [![Build Status][ti]][tl] [![Maven Central][mi]][ml] [![Issues][ii]][il]
 [![Forks][fi]][fl] [![Stars][si]][sl] [![Apache License][li]][ll]
 
-# Build Resources
+# Resources
 
 View documentation at:
 http://fluo.io
@@ -29,15 +29,15 @@ 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-resources.svg?branch=master
-[tl]: https://travis-ci.org/fluo-io/build-resources
-[mi]: 
https://maven-badges.herokuapp.com/maven-central/io.fluo/build-resources/badge.svg
-[ml]: https://maven-badges.herokuapp.com/maven-central/io.fluo/build-resources
-[ii]: https://img.shields.io/github/issues/fluo-io/build-resources.svg
-[il]: https://github.com/fluo-io/build-resources/issues
-[fi]: https://img.shields.io/github/forks/fluo-io/build-resources.svg
-[fl]: https://github.com/fluo-io/build-resources/network
-[si]: https://img.shields.io/github/stars/fluo-io/build-resources.svg
-[sl]: https://github.com/fluo-io/build-resources/stargazers
+[ti]: https://travis-ci.org/fluo-io/resources.svg?branch=master
+[tl]: https://travis-ci.org/fluo-io/resources
+[mi]: 
https://maven-badges.herokuapp.com/maven-central/io.fluo/resources/badge.svg
+[ml]: https://maven-badges.herokuapp.com/maven-central/io.fluo/resources
+[ii]: https://img.shields.io/github/issues/fluo-io/resources.svg
+[il]: https://github.com/fluo-io/resources/issues
+[fi]: https://img.shields.io/github/forks/fluo-io/resources.svg
+[fl]: https://github.com/fluo-io/resources/network
+[si]: https://img.shields.io/github/stars/fluo-io/resources.svg
+[sl]: https://github.com/fluo-io/resources/stargazers
 [li]: http://img.shields.io/badge/license-ASL-blue.svg
-[ll]: https://github.com/fluo-io/build-resources/blob/master/LICENSE
+[ll]: https://github.com/fluo-io/resources/blob/master/LICENSE

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/301c1fcd/pom.xml
--
diff --git a/pom.xml b/pom.xml
index a353a2d..7daf50e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,12 +2,12 @@
 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
   io.fluo
-  build-resources
+  resources
   1.0.0-SNAPSHOT
   jar
-  Fluo.io Build Resources
+  Fluo.io Resources
   Build resources for fluo.io projects
-  https://github.com/fluo-io/build-resources
+  https://github.com/fluo-io/resources
   
 Fluo.io
 http://fluo.io
@@ -19,6 +19,12 @@
   repo
 
   
+  
+
+  Fluo.io contributors
+  Fluo.io
+
+  
   
 
   Dev
@@ -30,14 +36,14 @@
   
   
   
-
scm:git:https://github.com/fluo-io/build-resources.git
-
scm:git:g...@github.com:fluo-io/build-resources.git
+scm:git:https://github.com/fluo-io/resources.git
+
scm:git:g...@github.com:fluo-io/resources.git
 HEAD
-https://github.com/fluo-io/build-resources
+https://github.com/fluo-io/resources
   
   
 GitHub
-https://github.com/fluo-io/build-resources/issues
+https://github.com/fluo-io/resources/issues
   
   
 
@@ -52,13 +58,13 @@
 
   
   
-
src/main/resources/io/fluo/build-resources/java-checkstyle.xml
+
src/main/resources/io/fluo/resources/java-checkstyle.xml
 
 Max
 true
 16
 true
-
src/main/resources/io/fluo/build-

[04/17] incubator-fluo git commit: Rename to build-resources

2016-08-03 Thread ctubbsii
http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7a83e5ef/src/main/resources/io/fluo/build-tools/eclipse-formatter.xml
--
diff --git a/src/main/resources/io/fluo/build-tools/eclipse-formatter.xml 
b/src/main/resources/io/fluo/build-tools/eclipse-formatter.xml
deleted file mode 100644
index a08ccb1..000
--- a/src/main/resources/io/fluo/build-tools/eclipse-formatter.xml
+++ /dev/null
@@ -1,350 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/7a83e5ef/src/main/resources/io/fluo/build-tools/java-checkstyle.xml
--
diff --git a/src/main/resources/io/fluo/build-tools/java-checkstyle.xml 
b/src/main/resources/io/fluo/build-tools/java-checkstyle.xml
deleted file mode 100644
index 8cfb290..000
--- a/src/main/resources/io/fluo/build-tools/java-checkstyle.xml
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-http://www.puppycrawl.com/dtds/configuration_1_3.dtd";>
-
-  
-
-  
-  
-  
-
-  
-  
-  
-
-  
-
-  
-
-
-
-  
-  
-  
-
-
-  
-  
-  
-  
-
-
-  
-  ftp://"/>
-
-
-
-
-
-  
-  
-
-
-
-  
-
-
-
-  
-  
-
-
-  
-  
-  
-  
-  
-  
-
-
-
-
-
-
-
-
-
-  
-
-
-  
-  
-
-
-  
-  
-
-
-  
-  
-
-
-  
-
-
-  
-  
-
-
-  
-  
-
-
-  
-  
-  
-  
-
-
-  
-  
-
-
-  
-  
-
-
-
-  
-  
-  
-  
-
-
-  
-  
-  
-  
-  
-  
-
-
-  
-  
-  
-
-
-
-
-  
-  
-  
-
-
-
-  
-  
-
-
-  
-
-
-  
-  
-
-
-
-
-
-  
-  
-
-
-  
-  
-  
-  
-  
-  
-  
-  
-
-
-  
-  
-
-
-  
-




[10/17] incubator-fluo git commit: Rename project and match maven central rules

2016-08-03 Thread ctubbsii
http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/301c1fcd/src/main/resources/io/fluo/resources/eclipse-formatter.xml
--
diff --git a/src/main/resources/io/fluo/resources/eclipse-formatter.xml 
b/src/main/resources/io/fluo/resources/eclipse-formatter.xml
new file mode 100644
index 000..a08ccb1
--- /dev/null
+++ b/src/main/resources/io/fluo/resources/eclipse-formatter.xml
@@ -0,0 +1,350 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/301c1fcd/src/main/resources/io/fluo/resources/java-checkstyle.xml
--
diff --git a/src/main/resources/io/fluo/resources/java-checkstyle.xml 
b/src/main/resources/io/fluo/resources/java-checkstyle.xml
new file mode 100644
index 000..a98aa73
--- /dev/null
+++ b/src/main/resources/io/fluo/resources/java-checkstyle.xml
@@ -0,0 +1,179 @@
+
+
+http://www.puppycrawl.com/dtds/configuration_1_3.dtd";>
+
+  
+
+  
+  
+  
+
+  
+  
+  
+
+  
+
+  
+
+
+
+  
+  
+  
+
+
+  
+  
+  
+  
+
+
+  
+  ftp://"/>
+
+
+
+
+
+  
+  
+
+
+
+  
+
+
+
+  
+  
+
+
+  
+  
+  
+  
+  
+  
+
+
+
+
+
+
+
+
+
+  
+
+
+  
+  
+
+
+  
+  
+
+
+  
+  
+
+
+  
+
+
+  
+  
+
+
+  
+  
+
+
+  
+  
+  
+  
+
+
+  
+  
+
+
+  
+  
+
+
+
+  
+  
+  
+  
+
+
+  
+  
+  
+  
+  
+  
+
+
+  
+  
+  
+
+
+
+
+  
+  
+  
+
+
+
+  
+  
+
+
+  
+
+
+  
+  
+
+
+
+
+  
+  
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+
+
+  
+  
+
+
+  
+




[01/17] incubator-fluo git commit: Initial commit

2016-08-03 Thread ctubbsii
Repository: incubator-fluo
Updated Branches:
  refs/heads/build-resources [created] 613cf66b7


Initial commit

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

Branch: refs/heads/build-resources
Commit: 0b3c33d730f6e1fc3eb44ea6b26c5f1b4b39c1d9
Parents: 
Author: Christopher Tubbs 
Authored: Tue Feb 23 16:16:03 2016 -0500
Committer: Christopher Tubbs 
Committed: Tue Feb 23 16:16:03 2016 -0500

--
 .gitignore |   9 +++
 LICENSE| 201 
 README.md  |   2 +
 3 files changed, 212 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/0b3c33d7/.gitignore
--
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..1cdc9f7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+target/
+pom.xml.tag
+pom.xml.releaseBackup
+pom.xml.versionsBackup
+pom.xml.next
+release.properties
+dependency-reduced-pom.xml
+buildNumber.properties
+.mvn/timing.properties

http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/0b3c33d7/LICENSE
--
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 000..8dada3e
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+   Version 2.0, January 2004
+http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+  "License" shall mean the terms and conditions for use, reproduction,
+  and distribution as defined by Sections 1 through 9 of this document.
+
+  "Licensor" shall mean the copyright owner or entity authorized by
+  the copyright owner that is granting the License.
+
+  "Legal Entity" shall mean the union of the acting entity and all
+  other entities that control, are controlled by, or are under common
+  control with that entity. For the purposes of this definition,
+  "control" means (i) the power, direct or indirect, to cause the
+  direction or management of such entity, whether by contract or
+  otherwise, or (ii) ownership of fifty percent (50%) or more of the
+  outstanding shares, or (iii) beneficial ownership of such entity.
+
+  "You" (or "Your") shall mean an individual or Legal Entity
+  exercising permissions granted by this License.
+
+  "Source" form shall mean the preferred form for making modifications,
+  including but not limited to software source code, documentation
+  source, and configuration files.
+
+  "Object" form shall mean any form resulting from mechanical
+  transformation or translation of a Source form, including but
+  not limited to compiled object code, generated documentation,
+  and conversions to other media types.
+
+  "Work" shall mean the work of authorship, whether in Source or
+  Object form, made available under the License, as indicated by a
+  copyright notice that is included in or attached to the work
+  (an example is provided in the Appendix below).
+
+  "Derivative Works" shall mean any work, whether in Source or Object
+  form, that is based on (or derived from) the Work and for which the
+  editorial revisions, annotations, elaborations, or other modifications
+  represent, as a whole, an original work of authorship. For the purposes
+  of this License, Derivative Works shall not include works that remain
+  separable from, or merely link (or bind by name) to the interfaces of,
+  the Work and Derivative Works thereof.
+
+  "Contribution" shall mean any work of authorship, including
+  the original version of the Work and any modifications or additions
+  to that Work or Derivative Works thereof, that is intentionally
+  submitted to Licensor for inclusion in the Work by the copyright owner
+  or by an individual or Legal Entity authorized to submit on behalf of
+  the copyright owner. For the purposes of this definition, "submitted"
+  means any form of electronic, verbal, or written communication sent
+  to the Licensor or its representatives, including but not limited to
+  communication on electronic mailing lists, source code control systems,
+  and issue tracking systems that are managed by, or on behalf of, the
+  Licensor for the purpose of discussing and improving the Work, but
+  excluding communication that is conspicuously marked or otherwise
+  designated in writing by the copyright ow

[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
+
+  true
+

[03/17] incubator-fluo git commit: Update NOTICE wording

2016-08-03 Thread ctubbsii
Update NOTICE wording


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

Branch: refs/heads/build-resources
Commit: a050005060488a347f725183407705715309743e
Parents: 9c3ee4a
Author: Christopher Tubbs 
Authored: Wed Feb 24 14:58:10 2016 -0500
Committer: Christopher Tubbs 
Committed: Wed Feb 24 15:15:02 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/a0500050/NOTICE
--
diff --git a/NOTICE b/NOTICE
index 0c4bcb8..d2fa8fb 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1 +1 @@
-Copyright 2016 Fluo authors (see AUTHORS)
+Copyright 2016 fluo.io contributors



[12/17] incubator-fluo git commit: [maven-release-plugin] prepare release resources-1.0.0

2016-08-03 Thread ctubbsii
[maven-release-plugin] prepare release resources-1.0.0


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

Branch: refs/heads/build-resources
Commit: e375ed7fb7cd765756f493b9fd4c306a891e0c1b
Parents: 301c1fc
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/e375ed7f/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 7daf50e..7b96ea3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
   4.0.0
   io.fluo
   resources
-  1.0.0-SNAPSHOT
+  1.0.0
   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
-HEAD
+resources-1.0.0
 https://github.com/fluo-io/resources
   
   



[15/17] incubator-fluo git commit: Merge pull request #1 from mikewalch/checkstyle-updates

2016-08-03 Thread ctubbsii
Merge pull request #1 from mikewalch/checkstyle-updates

Removed indentation checkstyle and increased line length checks to 125

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

Branch: refs/heads/build-resources
Commit: 7ff38d19af33220ad85bfa1d99ef6146b82761c8
Parents: a34c6f3 09abb66
Author: Christopher Tubbs 
Authored: Tue Mar 15 15:37:28 2016 -0400
Committer: Christopher Tubbs 
Committed: Tue Mar 15 15:37:28 2016 -0400

--
 src/main/resources/io/fluo/resources/java-checkstyle.xml | 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)
--




[16/17] incubator-fluo git commit: [maven-release-plugin] prepare release resources-1.0.1

2016-08-03 Thread ctubbsii
[maven-release-plugin] prepare release resources-1.0.1


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

Branch: refs/heads/build-resources
Commit: 6e416dc0f0eb4b5c6f1b09575829e166275e6a69
Parents: 7ff38d1
Author: Mike Walch 
Authored: Wed Mar 16 11:41:28 2016 -0400
Committer: Mike Walch 
Committed: Wed Mar 16 11:41:28 2016 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/6e416dc0/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 66b6882..38d70d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
   4.0.0
   io.fluo
   resources
-  1.0.1-SNAPSHOT
+  1.0.1
   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
-HEAD
+resources-1.0.1
 https://github.com/fluo-io/resources
   
   



[08/17] incubator-fluo git commit: Put findbugs config in properties to ease override

2016-08-03 Thread ctubbsii
Put findbugs config in properties to ease override


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

Branch: refs/heads/build-resources
Commit: 82a8c3fbf4695bb0b2402a3a9de839f691228c52
Parents: e4e9fc4
Author: Christopher Tubbs 
Authored: Thu Feb 25 15:04:23 2016 -0500
Committer: Christopher Tubbs 
Committed: Thu Feb 25 15:04:23 2016 -0500

--
 pom.xml | 23 +++
 1 file changed, 15 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/82a8c3fb/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 1cf6da6..a8b2d94 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,6 +54,10 @@
   
 
src/main/resources/io/fluo/build-resources/java-checkstyle.xml
 
+Max
+true
+16
+true
 
src/main/resources/io/fluo/build-resources/eclipse-formatter.xml
 true
 1.7
@@ -280,14 +284,6 @@
   org.codehaus.mojo
   findbugs-maven-plugin
   3.0.3
-  
-true
-Max
-true
-true
-16
-
src/main/findbugs/exclude-filter.xml
-  
 
 
   org.gaul
@@ -501,6 +497,17 @@
   
 
 
+  use-findbugs-filters
+  
+
+  src/main/findbugs/exclude-filter.xml
+
+  
+  
+
src/main/findbugs/exclude-filter.xml
+  
+
+
   m2e
   
 



[14/17] incubator-fluo git commit: Removed indentation checkstyle and increased line length checks to 125

2016-08-03 Thread ctubbsii
Removed indentation checkstyle and increased line length checks to 125


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

Branch: refs/heads/build-resources
Commit: 09abb66bfc4c6c796f949b825ba4fe5a6baa4706
Parents: a34c6f3
Author: Mike Walch 
Authored: Tue Mar 15 14:54:58 2016 -0400
Committer: Mike Walch 
Committed: Tue Mar 15 14:54:58 2016 -0400

--
 src/main/resources/io/fluo/resources/java-checkstyle.xml | 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/09abb66b/src/main/resources/io/fluo/resources/java-checkstyle.xml
--
diff --git a/src/main/resources/io/fluo/resources/java-checkstyle.xml 
b/src/main/resources/io/fluo/resources/java-checkstyle.xml
index a98aa73..135c56e 100644
--- a/src/main/resources/io/fluo/resources/java-checkstyle.xml
+++ b/src/main/resources/io/fluo/resources/java-checkstyle.xml
@@ -41,7 +41,7 @@
   
 
 
-  
+  
   ftp://"/>
 
 
@@ -122,14 +122,6 @@
   
   
 
-
-  
-  
-  
-  
-  
-  
-
 
   
   



[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
   
   



[17/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/613cf66b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fluo/tree/613cf66b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fluo/diff/613cf66b

Branch: refs/heads/build-resources
Commit: 613cf66b7894e9f376b6263a4a6ced8326e3e8dc
Parents: 6e416dc
Author: Mike Walch 
Authored: Wed Mar 16 11:41:29 2016 -0400
Committer: Mike Walch 
Committed: Wed Mar 16 11:41:29 2016 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/613cf66b/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 38d70d5..77d8e83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
   4.0.0
   io.fluo
   resources
-  1.0.1
+  1.0.2-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.1
+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
 



[07/17] incubator-fluo git commit: Remove JavadocParagraph rule

2016-08-03 Thread ctubbsii
Remove JavadocParagraph rule

This rule ensures that  are on the same line as the paragraph they
preceed, but the eclipse formatter standardizes this for us (by putting
 on the preceding line), so we don't need this.


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

Branch: refs/heads/build-resources
Commit: e4e9fc473d042cc9c0ee4bcd71ae904ded98fc02
Parents: 0013162
Author: Christopher Tubbs 
Authored: Thu Feb 25 12:06:17 2016 -0500
Committer: Christopher Tubbs 
Committed: Thu Feb 25 12:06:17 2016 -0500

--
 src/main/resources/io/fluo/build-resources/java-checkstyle.xml | 1 -
 1 file changed, 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-fluo/blob/e4e9fc47/src/main/resources/io/fluo/build-resources/java-checkstyle.xml
--
diff --git a/src/main/resources/io/fluo/build-resources/java-checkstyle.xml 
b/src/main/resources/io/fluo/build-resources/java-checkstyle.xml
index 8cfb290..a98aa73 100644
--- a/src/main/resources/io/fluo/build-resources/java-checkstyle.xml
+++ b/src/main/resources/io/fluo/build-resources/java-checkstyle.xml
@@ -156,7 +156,6 @@
 
 
 
-
 
   
   



  1   2   >