You can download neo4j-gremlin-3.3.0.jar in this page.
Apache License
neo4j-gremlin-3.3.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.tinkerpop/neo4j-gremlin/pom.properties META-INF/maven/org.apache.tinkerpop/neo4j-gremlin/pom.xml META-INF/services/org.apache.tinkerpop.gremlin.jsr223.GremlinPlugin org.apache.tinkerpop.gremlin.neo4j.jsr223.Neo4jGremlinPlugin.class org.apache.tinkerpop.gremlin.neo4j.process.traversal.LabelP.class org.apache.tinkerpop.gremlin.neo4j.process.traversal.step.sideEffect.CypherStartStep.class org.apache.tinkerpop.gremlin.neo4j.process.traversal.step.sideEffect.Neo4jGraphStep.class org.apache.tinkerpop.gremlin.neo4j.process.traversal.strategy.optimization.Neo4jGraphStepStrategy.class org.apache.tinkerpop.gremlin.neo4j.process.util.Neo4jCypherIterator.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jEdge.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jElement.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraph.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraphVariables.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jHelper.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jProperty.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jVertex.class org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jVertexProperty.class org.apache.tinkerpop.gremlin.neo4j.structure.trait.MultiMetaNeo4jTrait.class org.apache.tinkerpop.gremlin.neo4j.structure.trait.Neo4jTrait.class org.apache.tinkerpop.gremlin.neo4j.structure.trait.NoMultiNoMetaNeo4jTrait.class
neo4j-gremlin-3.3.0.pom file content.
<!-- 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. --> <project xmlns="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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.tinkerpop</groupId> <artifactId>tinkerpop</artifactId> <version>3.3.0</version> </parent> <artifactId>neo4j-gremlin</artifactId> <name>Apache TinkerPop :: Neo4j Gremlin</name> <dependencies> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-tinkerpop-api</artifactId> <version>0.1</version> </dependency> <!-- TESTING --> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <directory>${basedir}/target</directory> <finalName>${project.artifactId}-${project.version}</finalName> <resources> <resource> <directory>${basedir}/src/main/resources </directory> </resource> </resources> <testResources> <testResource> <directory>${basedir}/src/test/resources </directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Gremlin-Plugin-Dependencies>org.neo4j:neo4j-tinkerpop-api-impl:0.3-2.3.3 </Gremlin-Plugin-Dependencies> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <!-- Use this profile if you want the Neo4j test suite to run. The project should compile/install Neo4j without this profile. Note that if you "deploy" with this profile, neo4j-gremlin artifacts will be skipped. --> <id>include-neo4j</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>includeNeo4j</name> </property> </activation> <dependencies> <!-- TESTING --> <!-- *** WARNING *** --> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-tinkerpop-api-impl</artifactId> <version>0.3-2.3.3</version> <scope>test</scope> <exclusions> <exclusion> <groupId>com.googlecode.concurrentlinkedhashmap</groupId> <artifactId>concurrentlinkedhashmap-lru</artifactId> </exclusion> <exclusion> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.11.6</version> <scope>test</scope> </dependency> <dependency> <groupId>com.googlecode.concurrentlinkedhashmap</groupId> <artifactId>concurrentlinkedhashmap-lru</artifactId> <version>1.4.2</version> <scope>test</scope> </dependency> <!-- *** WARNING *** --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>false</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <skipTests>false</skipTests> <reuseForks>false</reuseForks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>neo4j-gremlin</artifactId> <version>3.3.0</version> </dependency>
If you think the following neo4j-gremlin-3.3.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download neo4j-gremlin-3.3.0.jar file