Neo4j - Cypher.
Neo4j query language.
Here is the list of declaration for neo4j-cypher. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-cypher</artifactId> <version>1.9.3</version> </dependency>
If you think this Maven repository POM file listing for neo4j-cypher is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU General Public License, Version 3
URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html.
The neo4j-cypher-1.9.3 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Scala | scala-library 2.10.0 Standard library for the Scala Programming Language | 435 |
Scala | scalatest_2.10 2.0.M6-SNAP5 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 6 |
Cache | concurrentlinkedhashmap-lru 1.3.1 A high performance version of java.util.LinkedHashMap for use as a software cache. | 13 |
The following plugins are used in the neo4j-cypher-1.9.3.jar
Here is the content of the POM file.
<?xml version="1.0"?> <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"> <parent> <groupId>org.neo4j</groupId> <artifactId>parent</artifactId> <version>1.9.3</version> <relativePath>../..</relativePath> </parent> <properties> <bundle.namespace>org.neo4j.cypher</bundle.namespace> <scala.version>2.10.0</scala.version> <license-text.header>GPL-3-header.txt</license-text.header> <docs.url>http://docs.neo4j.org/chunked/${project.version}/cypher-query-lang.html</docs.url> <licensing.prepend.text>notice-gpl-prefix.txt</licensing.prepend.text> </properties> <modelVersion>4.0.0</modelVersion> <groupId>org.neo4j</groupId> <artifactId>neo4j-cypher</artifactId> <packaging>jar</packaging> <version>1.9.3</version> <name>Neo4j - Cypher</name> <description>Neo4j query language</description> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <scm> <url>https://github.com/neo4j/neo4j/tree/master/community/cypher</url> </scm> <licenses> <license> <name>GNU General Public License, Version 3</name> <url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url> <comments>The software ("Software") developed and owned by Network Engine for Objects in Lund AB (referred to in this notice as "Neo Technology") is licensed under the GNU GENERAL PUBLIC LICENSE Version 3 to all third parties and that license is included below. However, if you have executed an End User Software License and Services Agreement or an OEM Software License and Support Services Agreement, or another commercial license agreement with Neo Technology or one of its affiliates (each, a "Commercial Agreement"), the terms of the license in such Commercial Agreement will supersede the GNU GENERAL PUBLIC LICENSE Version 3 and you may use the Software solely pursuant to the terms of the relevant Commercial Agreement. </comments> </license> </licenses> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>${scala.version}</version> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.10</artifactId> <version>2.0.M6-SNAP5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-graphviz</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-lucene-index</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-graph-matching</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-graph-algo</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.googlecode.concurrentlinkedhashmap</groupId> <artifactId>concurrentlinkedhashmap-lru</artifactId> <version>1.3.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>scala-compile</id> <goals> <goal>add-source</goal> <goal>compile</goal> </goals> <phase>process-resources</phase> </execution> <execution> <id>scala-test-compile</id> <phase>${scala-test-compile-phase}</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> <configuration> <jvmArgs> <jvmArg>-Xms64m</jvmArg> <jvmArg>-Xmx1024m</jvmArg> </jvmArgs> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <configuration> <reportPlugins combine.children="append"> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <detectJavaApiLink>true</detectJavaApiLink> <detectLinks>true</detectLinks> <quiet>true</quiet> <excludePackageNames>*.impl.*</excludePackageNames> </configuration> <reports> <report>javadoc</report> </reports> </plugin> <!-- Scala API Documentation if we want it --> <!-- <plugin> <groupId>org.scala-tools</groupId> <artifactId>maven-scala-plugin</artifactId> </plugin> --> </reportPlugins> </configuration> <executions> <execution> <id>attach-descriptor</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>neo-docs-build</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>docsBuild</name> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/DocTest*.java</include> <include>**/*DocTest.java</include> <include>**/docgen/**</include> </includes> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> <distributionManagement> <site> <id>neo4j-site</id> <url>scpexe://static.neo4j.org/var/www/components.neo4j.org/${project.artifactId}/${project.version}</url> </site> </distributionManagement> </project>