Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1552 3ddd18494 -> 420b47021
TINKERPOP-1552 More consistent use of Gremlin.Net Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/420b4702 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/420b4702 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/420b4702 Branch: refs/heads/TINKERPOP-1552 Commit: 420b47021ca6a5e03da154ab0488eb24e8091b0b Parents: 3ddd184 Author: Stephen Mallette <[email protected]> Authored: Fri Jun 23 16:05:35 2017 -0400 Committer: Stephen Mallette <[email protected]> Committed: Fri Jun 23 16:05:35 2017 -0400 ---------------------------------------------------------------------- gremlin-dotnet/pom.xml | 2 +- gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 2 +- gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Bytecode.cs | 2 +- gremlin-dotnet/src/pom.xml | 4 ++-- gremlin-dotnet/test/pom.xml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/420b4702/gremlin-dotnet/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/pom.xml b/gremlin-dotnet/pom.xml index 6cd7da3..58ac2d6 100644 --- a/gremlin-dotnet/pom.xml +++ b/gremlin-dotnet/pom.xml @@ -24,7 +24,7 @@ limitations under the License. <version>3.2.6-SNAPSHOT</version> </parent> <artifactId>gremlin-dotnet</artifactId> - <name>Apache TinkerPop :: Gremlin-DotNet</name> + <name>Apache TinkerPop :: Gremlin.Net</name> <packaging>pom</packaging> <modules> http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/420b4702/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj b/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj index 7ac6f8d..361ce9e 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj +++ b/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj @@ -21,7 +21,7 @@ Gremlin.Net implements Gremlin within .NET. C# syntax has the same constructs as Java including âdot notationâ for function chaining (a.b.c), round bracket function arguments (a(b,c))`, and support for global namespaces (a(b()) vs a(__.b()))`. As such, anyone familiar with Gremlin-Java will immediately be able to work with - Gremlin-DotNet. Moreover, there are a few added constructs to Gremlin-DotNet that make traversals a bit more succinct. + Gremlin.Net. Moreover, there are a few added constructs to Gremlin.Net that make traversals a bit more succinct. Please see the reference documentation at Apache TinkerPop for more information on usage. http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/420b4702/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Bytecode.cs ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Bytecode.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Bytecode.cs index 693d331..b76f395 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Bytecode.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Bytecode.cs @@ -31,7 +31,7 @@ namespace Gremlin.Net.Process.Traversal /// <remarks> /// Bytecode is simply a list of ordered instructions. /// Bytecode can be serialized between environments and machines by way of a GraphSON representation. - /// Thus, Gremlin-DotNet can create bytecode in C# and ship it to Gremlin-Java for evaluation in Java. + /// Thus, Gremlin.Net can create bytecode in C# and ship it to Gremlin-Java for evaluation in Java. /// </remarks> public class Bytecode { http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/420b4702/gremlin-dotnet/src/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/src/pom.xml b/gremlin-dotnet/src/pom.xml index 645921f..8f9007e 100644 --- a/gremlin-dotnet/src/pom.xml +++ b/gremlin-dotnet/src/pom.xml @@ -24,7 +24,7 @@ limitations under the License. <version>3.2.6-SNAPSHOT</version> </parent> <artifactId>gremlin-dotnet-source</artifactId> - <name>Apache TinkerPop :: Gremlin-DotNet - Source</name> + <name>Apache TinkerPop :: Gremlin.Net - Source</name> <packaging>${packaging.type}</packaging> <build> @@ -93,7 +93,7 @@ limitations under the License. </build> </profile> <!-- - Provides a way to deploy the gremlin-dotnet GLV to nuget. This cannot be part of the standard maven execution + Provides a way to deploy the Gremlin.Net GLV to nuget. This cannot be part of the standard maven execution because nuget does not have a staging environment like sonatype for releases. As soon as the release is published it is public. In our release workflow, deploy occurs prior to vote on the release and we can't make this stuff public until the vote is over. http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/420b4702/gremlin-dotnet/test/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/test/pom.xml b/gremlin-dotnet/test/pom.xml index 7fa75fa..ab2a607 100644 --- a/gremlin-dotnet/test/pom.xml +++ b/gremlin-dotnet/test/pom.xml @@ -24,7 +24,7 @@ limitations under the License. <version>3.2.6-SNAPSHOT</version> </parent> <artifactId>gremlin-dotnet-tests</artifactId> - <name>Apache TinkerPop :: Gremlin-DotNet - Tests</name> + <name>Apache TinkerPop :: Gremlin.Net - Tests</name> <packaging>${packaging.type}</packaging> <properties> <!-- provides a way to convert maven.test.skip value to skipTests for use in skipping dotnet tests -->
