Skip to content

Commit

Permalink
Merge branch 'tp32'
Browse files Browse the repository at this point in the history
  • Loading branch information
pluradj committed Feb 4, 2017
2 parents 03cfe03 + 7858c53 commit 97d585d
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 19 deletions.
5 changes: 2 additions & 3 deletions gremlin-core/pom.xml
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
Expand Up @@ -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);
Expand Down
Expand Up @@ -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
*/
Expand Down
3 changes: 0 additions & 3 deletions gremlin-driver/pom.xml
Expand Up @@ -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>
Expand Down
Expand Up @@ -738,7 +738,7 @@ public synchronized CompletableFuture<Void> closeAsync() {
}

/**
* 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;
Expand Down Expand Up @@ -874,7 +874,7 @@ public Builder sessionId(final String sessionId) {
* 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;
Expand Down
2 changes: 1 addition & 1 deletion gremlin-groovy/pom.xml
Expand Up @@ -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>
Expand Down
59 changes: 54 additions & 5 deletions pom.xml
Expand Up @@ -134,15 +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>
<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>
<skipPerformanceTests>true</skipPerformanceTests>

<!--
This file will come from the root of each modules test/resources/ directories. log4j-silent.properties will
Expand Down Expand Up @@ -461,7 +468,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>
Expand Down Expand Up @@ -1098,6 +1105,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>
Expand Down
4 changes: 2 additions & 2 deletions spark-gremlin/pom.xml
Expand Up @@ -247,7 +247,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>
Expand Down Expand Up @@ -426,4 +426,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 97d585d

Please sign in to comment.