You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/02/26 18:51:54 UTC

[25/32] incubator-tinkerpop git commit: Merge remote-tracking branch 'origin/TINKERPOP-937' into tp31

Merge remote-tracking branch 'origin/TINKERPOP-937' into tp31

Conflicts:
	CHANGELOG.asciidoc


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

Branch: refs/heads/TINKERPOP-1166
Commit: 6499d2a414e88b06976fbcdd6d77762d2951477a
Parents: 01b6171 fb3da9f
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Feb 25 09:54:24 2016 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Feb 25 09:54:24 2016 -0500

----------------------------------------------------------------------
 CHANGELOG.asciidoc                              |   1 +
 docs/src/dev/developer/contributing.asciidoc    |   7 +
 docs/src/dev/provider/index.asciidoc            | 911 +++++++++++++++++++
 .../src/reference/gremlin-applications.asciidoc | 347 +------
 .../reference/implementations-intro.asciidoc    | 528 +----------
 .../upgrade/release-3.1.x-incubating.asciidoc   |  12 +
 pom.xml                                         |  25 +
 7 files changed, 969 insertions(+), 862 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6499d2a4/CHANGELOG.asciidoc
----------------------------------------------------------------------
diff --cc CHANGELOG.asciidoc
index be419b2,070ccaf..98546cb
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@@ -26,12 -26,7 +26,13 @@@ image::https://raw.githubusercontent.co
  TinkerPop 3.1.2 (NOT OFFICIALLY RELEASED YET)
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
 +* Bumped to Apache Groovy 2.4.6.
 +* Added the `gremlin-archetype-server` archetype that demonstrates
 +* Added the `gremlin-archetype-tinkergraph` archetype that demonstrates a basic project that uses TinkerGraph.
 +* Added `gremlin-archetype` module to house TinkerPop "examples".
 +* Fixed a condition where `ConnectionPool` initialization in the driver would present a `NullPointerException` on initialization if there were errors constructing the pool in full.
 +* Fixed a bug in the round-robin load balancing strategy in the driver would waste requests potentially sending messages to dead hosts.
+ * Added new Provider Documentation book - content for this book was extracted from the reference documentation.
  * Fixed a bug where multiple "close" requests were being sent by the driver on `Client.close()`.
  * Fixed an `Property` attach bug that shows up in serialization-based `GraphComputer` implementations.
  * Fixed a pom.xml bug where Gremlin Console/Server were not pulling the latest Neo4j 2.3.2.

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6499d2a4/docs/src/dev/developer/contributing.asciidoc
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6499d2a4/docs/src/reference/gremlin-applications.asciidoc
----------------------------------------------------------------------
diff --cc docs/src/reference/gremlin-applications.asciidoc
index 39d212b,163a9c9..16df84f
--- a/docs/src/reference/gremlin-applications.asciidoc
+++ b/docs/src/reference/gremlin-applications.asciidoc
@@@ -1880,25 -1549,3 +1549,25 @@@ The following shows the output for `Had
  ----
  describeGraph(HadoopGraph)
  ----
 +
 +[[gremlin-archetypes]]
 +Gremlin Archetypes
 +==================
 +
 +TinkerPop has a number of link:https://maven.apache.org/guides/introduction/introduction-to-archetypes.html[Maven archetypes],
 +which provide example project templates to quickly get started with TinkerPop. The available archetypes are as follows:
 +
 +* `gremlin-archetype-server` - An example project that demonstrates the basic structure of a
 +<<gremlin-server,Gremlin Server>> project, how to connect with the Gremlin Driver, and how to embed Gremlin Server in
 +a testing framework.
 +* `gremlin-archetype-tinkergraph` - A basic example of how to structure a TinkerPop project with Maven.
 +
 +You can use Maven to generate these example projects with a command like:
 +
 +[source,shell]
 +$ mvn archetype:generate -DarchetypeGroupId=org.apache.tinkerpop -DarchetypeArtifactId=gremlin-archetype-server
 +      -DarchetypeVersion=x.y.z -DgroupId=com.my -DartifactId=app -Dversion=0.1 -DinteractiveMode=false
 +
 +This command will generate a new Maven project in a directory called "app" with a `pom.xml` specifying a `groupId` of
 +`com.my`. Please see the `README.asciidoc` in the root of each generated project for information on how to build and
- execute it.
++execute it.

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6499d2a4/docs/src/upgrade/release-3.1.x-incubating.asciidoc
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6499d2a4/pom.xml
----------------------------------------------------------------------