Repository: tinkerpop
Updated Branches:
  refs/heads/master 03cfe0308 -> 97d585da2


fix javadoc aggregate core. CTR.


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

Branch: refs/heads/master
Commit: 7858c53cbfd02e445dbfed41bd77c751c91a222f
Parents: 1810228
Author: Jason Plurad <plur...@us.ibm.com>
Authored: Fri Feb 3 22:19:39 2017 -0500
Committer: Jason Plurad <plur...@us.ibm.com>
Committed: Fri Feb 3 22:19:39 2017 -0500

----------------------------------------------------------------------
 gremlin-core/pom.xml                            |  5 +-
 .../CachedGremlinScriptEngineManager.java       |  4 +-
 .../process/traversal/TraversalSource.java      |  2 +-
 gremlin-driver/pom.xml                          |  3 -
 .../apache/tinkerpop/gremlin/driver/Client.java |  4 +-
 gremlin-groovy/pom.xml                          |  2 +-
 pom.xml                                         | 58 ++++++++++++++++++--
 spark-gremlin/pom.xml                           |  4 +-
 8 files changed, 63 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/gremlin-core/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-core/pom.xml b/gremlin-core/pom.xml
index e8f3a34..3db6c13 100644
--- a/gremlin-core/pom.xml
+++ b/gremlin-core/pom.xml
@@ -37,8 +37,7 @@ limitations under the License.
         <dependency>
             <groupId>org.yaml</groupId>
             <artifactId>snakeyaml</artifactId>
-            <version>1.15</version>
-            <type>jar</type>
+            <version>${snakeyaml.version}</version>
         </dependency>
         <dependency>
             <groupId>org.javatuples</groupId>
@@ -53,7 +52,7 @@ limitations under the License.
         <dependency>
             <groupId>com.jcabi</groupId>
             <artifactId>jcabi-manifests</artifactId>
-            <version>1.1</version>
+            <version>${jcabi.version}</version>
             <exclusions>
                 <exclusion>
                     <groupId>org.slf4j</groupId>

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/CachedGremlinScriptEngineManager.java
----------------------------------------------------------------------
diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/CachedGremlinScriptEngineManager.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/CachedGremlinScriptEngineManager.java
index 5798e1c..8fb34cd 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/CachedGremlinScriptEngineManager.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/jsr223/CachedGremlinScriptEngineManager.java
@@ -34,14 +34,14 @@ public class CachedGremlinScriptEngineManager extends 
DefaultGremlinScriptEngine
     private final ConcurrentHashMap<String,String> mimeToName = new 
ConcurrentHashMap<>();
 
     /**
-     * {@inheritDoc}
+     * @see 
DefaultGremlinScriptEngineManager#DefaultGremlinScriptEngineManager()
      */
     public CachedGremlinScriptEngineManager() {
         super();
     }
 
     /**
-     * {@inheritDoc}
+     * @see 
DefaultGremlinScriptEngineManager#DefaultGremlinScriptEngineManager(ClassLoader 
loader)
      */
     public CachedGremlinScriptEngineManager(final ClassLoader loader) {
         super(loader);

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/TraversalSource.java
----------------------------------------------------------------------
diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/TraversalSource.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/TraversalSource.java
index 8fd8c99..d20ce10 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/TraversalSource.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/TraversalSource.java
@@ -63,7 +63,7 @@ public interface TraversalSource extends Cloneable, 
AutoCloseable {
     public TraversalStrategies getStrategies();
 
     /**
-     * Get the {@link Graph) associated with this traversal source.
+     * Get the {@link Graph} associated with this traversal source.
      *
      * @return the graph of the traversal source
      */

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/gremlin-driver/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-driver/pom.xml b/gremlin-driver/pom.xml
index 4f25504..8d6b194 100644
--- a/gremlin-driver/pom.xml
+++ b/gremlin-driver/pom.xml
@@ -25,9 +25,6 @@ limitations under the License.
     </parent>
     <artifactId>gremlin-driver</artifactId>
     <name>Apache TinkerPop :: Gremlin Driver</name>
-    <properties>
-        <netty.version>4.0.42.Final</netty.version>
-    </properties>
     <dependencies>
         <dependency>
             <groupId>org.apache.tinkerpop</groupId>

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
----------------------------------------------------------------------
diff --git 
a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java 
b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
index 528f6b1..3da8663 100644
--- 
a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
+++ 
b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
@@ -738,7 +738,7 @@ public abstract class Client {
     }
 
     /**
-     * Settings given to {@link Cluster#connect(Settings)} that configures how 
a {@link Client} will behave.
+     * Settings given to {@link Cluster#connect(Client.Settings)} that 
configures how a {@link Client} will behave.
      */
     public static class Settings {
         private final Optional<SessionSettings> session;
@@ -874,7 +874,7 @@ public abstract class Client {
              * decided how to proceed with those orphaned transactions. 
Setting this to {@code true} tends to lead to
              * faster close operation which can be desirable if Gremlin Server 
has a long session timeout and a long
              * script evaluation timeout as attempts to close long run jobs 
can occur more rapidly. By default, this
-             * value is {@link false}.
+             * value is {@code false}.
              */
             public Builder forceClosed(final boolean forced) {
                 this.forceClosed = forced;

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/gremlin-groovy/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-groovy/pom.xml b/gremlin-groovy/pom.xml
index b82c986..77b1023 100644
--- a/gremlin-groovy/pom.xml
+++ b/gremlin-groovy/pom.xml
@@ -68,7 +68,7 @@ limitations under the License.
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-lang3</artifactId>
-            <version>3.3.1</version>
+            <version>${commons.lang3.version}</version>
         </dependency>
         <!-- TEST -->
         <dependency>

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0845ef8..2aa3b30 100644
--- a/pom.xml
+++ b/pom.xml
@@ -134,16 +134,22 @@ limitations under the License.
     </scm>
     <properties>
         <commons.configuration.version>1.10</commons.configuration.version>
+        <commons.lang.version>2.6</commons.lang.version>
+        <commons.lang3.version>3.3.1</commons.lang3.version>
         <groovy.version>2.4.8</groovy.version>
+        <hadoop.version>2.7.2</hadoop.version>
+        <java.tuples.version>1.2</java.tuples.version>
+        <javadoc-plugin.version>2.10.1</javadoc-plugin.version>
+        <jcabi.version>1.1</jcabi.version>
         <metrics.version>3.0.2</metrics.version>
+        <netty.version>4.0.42.Final</netty.version>
+        <slf4j.version>1.7.21</slf4j.version>
+        <snakeyaml.version>1.15</snakeyaml.version>
+
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
         <skipIntegrationTests>true</skipIntegrationTests>
         <skipPerformanceTests>true</skipPerformanceTests>
-        <slf4j.version>1.7.21</slf4j.version>
-        <hadoop.version>2.7.2</hadoop.version>
-        <java.tuples.version>1.2</java.tuples.version>
-        <javadoc-plugin.version>2.10.1</javadoc-plugin.version>
 
         <!--
         This file will come from the root of each modules test/resources/ 
directories. log4j-silent.properties will
@@ -530,7 +536,7 @@ limitations under the License.
             <dependency>
                 <groupId>org.apache.commons</groupId>
                 <artifactId>commons-lang3</artifactId>
-                <version>3.3.1</version>
+                <version>${commons.lang3.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.hadoop</groupId>
@@ -1162,6 +1168,48 @@ limitations under the License.
                                             
<artifactId>gremlin-shaded</artifactId>
                                             
<version>${project.version}</version>
                                         </additionalDependency>
+                                        <additionalDependency>
+                                            
<groupId>org.codehaus.groovy</groupId>
+                                            
<artifactId>groovy-groovysh</artifactId>
+                                            
<version>${groovy.version}</version>
+                                            <classifier>indy</classifier>
+                                        </additionalDependency>
+                                        <additionalDependency>
+                                            
<groupId>org.codehaus.groovy</groupId>
+                                            
<artifactId>groovy-json</artifactId>
+                                            
<version>${groovy.version}</version>
+                                            <classifier>indy</classifier>
+                                        </additionalDependency>
+                                        <additionalDependency>
+                                            
<groupId>org.apache.commons</groupId>
+                                            
<artifactId>commons-lang3</artifactId>
+                                            
<version>${commons.lang3.version}</version>
+                                        </additionalDependency>
+                                        <additionalDependency>
+                                            <groupId>commons-lang</groupId>
+                                            
<artifactId>commons-lang</artifactId>
+                                            
<version>${commons.lang.version}</version>
+                                        </additionalDependency>
+                                        <additionalDependency>
+                                            <groupId>org.slf4j</groupId>
+                                            <artifactId>slf4j-api</artifactId>
+                                            <version>${slf4j.version}</version>
+                                        </additionalDependency>
+                                        <additionalDependency>
+                                            <groupId>io.netty</groupId>
+                                            <artifactId>netty-all</artifactId>
+                                            <version>${netty.version}</version>
+                                        </additionalDependency>
+                                        <additionalDependency>
+                                            <groupId>org.yaml</groupId>
+                                            <artifactId>snakeyaml</artifactId>
+                                            
<version>${snakeyaml.version}</version>
+                                        </additionalDependency>
+                                        <additionalDependency>
+                                            <groupId>com.jcabi</groupId>
+                                            
<artifactId>jcabi-manifests</artifactId>
+                                            <version>${jcabi.version}</version>
+                                        </additionalDependency>
                                     </additionalDependencies>
                                 </configuration>
                             </execution>

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7858c53c/spark-gremlin/pom.xml
----------------------------------------------------------------------
diff --git a/spark-gremlin/pom.xml b/spark-gremlin/pom.xml
index efa64dd..d174a69 100644
--- a/spark-gremlin/pom.xml
+++ b/spark-gremlin/pom.xml
@@ -215,7 +215,7 @@
         <dependency>
             <groupId>commons-lang</groupId>
             <artifactId>commons-lang</artifactId>
-            <version>2.6</version>
+            <version>${commons.lang.version}</version>
         </dependency>
         <dependency>
             <groupId>com.thoughtworks.paranamer</groupId>
@@ -380,4 +380,4 @@
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>

Reply via email to