Neo4j - Graph Algorithms.
Graph algorithms for Neo4j..
Here is the list of declaration for neo4j-graph-algo. 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-graph-algo</artifactId> <version>1.8.M06</version> </dependency>
If you think this Maven repository POM file listing for neo4j-graph-algo 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-graph-algo-1.8.M06 has 2 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 |
---|---|---|
Document Database | neo4j-kernel 1.8.M06 Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org. | 23 |
Document Database | neo4j-kernel 1.8.M06 Neo4j kernel is a lightweight, embedded Java database designed to store data structured as graphs rather than tables. For more information, see http://neo4j.org. | 23 |
The following table lists the most popular artifacts which are depending on neo4j-graph-algo-1.8.M06. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Document Database | neo4j-cypher 1.8.M06 Neo4j query language | 5 |
The following plugins are used in the neo4j-graph-algo-1.8.M06.jar
The following packages are defined in the neo4j-graph-algo-1.8.M06.jar
org.neo4j.graphalgo org.neo4j.graphalgo.impl.ancestor org.neo4j.graphalgo.impl.centrality org.neo4j.graphalgo.impl.path org.neo4j.graphalgo.impl.shortestpath org.neo4j.graphalgo.impl.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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.build</groupId> <artifactId>parent-central</artifactId> <version>35</version> <relativePath /> </parent> <properties> <short-name>graph-algo</short-name> <bundle.namespace>org.neo4j.graphalgo</bundle.namespace> <license-text.header>GPL-3-header.txt</license-text.header> <docs.url>http://docs.neo4j.org/chunked/${project.version}/graph-algo.html</docs.url> </properties> <modelVersion>4.0.0</modelVersion> <artifactId>neo4j-graph-algo</artifactId> <groupId>org.neo4j</groupId> <version>1.8.M06</version> <packaging>jar</packaging> <name>Neo4j - Graph Algorithms</name> <description>Graph algorithms for Neo4j.</description> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <scm> <url>https://github.com/neo4j/community/tree/master/graph-algo</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.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <version>1.8.M06</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <version>1.8.M06</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> <build> <plugins> <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> </reportPlugins> </configuration> <executions> <execution> <id>attach-descriptor</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <site> <id>neo4j-site</id> <url>scpexe://static.neo4j.org/var/www/components.neo4j.org/${project.artifactId}/${project.version}</url> </site> </distributionManagement> </project>