Neo4j - Graph Database Kernel.
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..
Here is the list of declaration for neo4j-kernel. 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-kernel</artifactId> <version>1.8.RC1</version> </dependency>
If you think this Maven repository POM file listing for neo4j-kernel 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-kernel-1.8.RC1 has 5 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 |
---|---|---|
Log | logback-classic 1.0.0 Logback: the reliable, generic, fast and flexible logging library for Java. | 65 |
JSON | gson 2.1 Google Gson library | 76 |
Testing Mock | mockito-all 1.9.0 Mock objects library for java | 257 |
JEE Library | jotm-core 2.2.3 JOTM: Java Open Transaction Manager - Core | 24 |
The following table lists the most popular artifacts which are depending on neo4j-kernel-1.8.RC1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Document Database | neo4j-graphviz 1.8.RC1 Utility component to generate Graphviz .dot notation from Neo4j graphs. | 5 |
Document Database | neo4j-lucene-index 1.8.RC1 Integration layer between Neo4j and Lucene, providing one possible implementation of the Index API. | 5 |
Document Database | neo4j-lucene-index 1.8.RC1 Integration layer between Neo4j and Lucene, providing one possible implementation of the Index API. | 5 |
The following plugins are used in the neo4j-kernel-1.8.RC1.jar
The following packages are defined in the neo4j-kernel-1.8.RC1.jar
org.neo4j.graphdb org.neo4j.graphdb.config org.neo4j.graphdb.event org.neo4j.graphdb.factory org.neo4j.graphdb.index org.neo4j.graphdb.traversal org.neo4j.helpers org.neo4j.helpers.collection org.neo4j.kernel org.neo4j.kernel.configuration org.neo4j.kernel.guard org.neo4j.kernel.impl org.neo4j.kernel.impl.annotations org.neo4j.kernel.impl.batchinsert org.neo4j.kernel.impl.cache org.neo4j.kernel.impl.core org.neo4j.kernel.impl.index org.neo4j.kernel.impl.nioneo.store org.neo4j.kernel.impl.nioneo.xa org.neo4j.kernel.impl.persistence org.neo4j.kernel.impl.storemigration org.neo4j.kernel.impl.storemigration.legacystore org.neo4j.kernel.impl.storemigration.monitoring org.neo4j.kernel.impl.transaction org.neo4j.kernel.impl.transaction.xaframework org.neo4j.kernel.impl.traversal org.neo4j.kernel.impl.util org.neo4j.kernel.info org.neo4j.kernel.lifecycle org.neo4j.kernel.logging org.neo4j.tooling org.neo4j.unsafe.batchinsert
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2002-2012 "Neo Technology," Network Engine for Objects in Lund AB [http://neotechnology.com] This file is part of Neo4j. Neo4j is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses />. --> <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> <modelVersion>4.0.0</modelVersion> <groupId>org.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <version>1.8.RC1</version> <name>Neo4j - Graph Database Kernel</name> <description> 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. </description> <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url> <properties> <bundle.namespace>org.neo4j</bundle.namespace> <short-name>kernel</short-name> <git.executable>git</git.executable> <license-text.header>GPL-3-header.txt</license-text.header> <docs.url>http://docs.neo4j.org/chunked/${project.version}/</docs.url> </properties> <packaging>jar</packaging> <scm> <url>https://github.com/neo4j/community/tree/master/kernel</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> <profiles> <profile> <id>git-windows</id> <activation> <os><family>Windows</family></os> </activation> <properties> <git.executable>git.cmd</git.executable> </properties> </profile> <profile><!-- used for testing --> <id>Linux-dependency-tools.jar</id> <activation> <os><name>Linux</name></os> </activation> <dependencies> <dependency> <groupId>com.sun.tools</groupId> <artifactId>tools</artifactId> <version>${sun.tools.version}</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> <optional>true</optional> </dependency> </dependencies> </profile> <profile><!-- used for testing --> <id>Windows-dependency-tools.jar</id> <activation> <os><family>Windows</family></os> </activation> <dependencies> <dependency> <groupId>com.sun.tools</groupId> <artifactId>tools</artifactId> <version>${sun.tools.version}</version> <scope>system</scope> <systemPath>${java.home}\\..\\lib\\tools.jar</systemPath> <optional>true</optional> </dependency> </dependencies> </profile> </profiles> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>false</skip> <argLine>-Xmx300m</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.12</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <configuration> <includes> <include>org/neo4j/graphdb/**</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <compilerArgument>-proc:none</compilerArgument> <includes> <include>org/neo4j/kernel/impl/annotations/**</include> </includes> </configuration> </execution> <execution> <id>compile-neo4j-kernel</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>generate-version</id> <phase>generate-sources</phase> <configuration> <property environment="env" /> <target> <mkdir dir="target/generated-sources/version/org/neo4j/kernel/impl/" /> <exec executable="${git.executable}" failifexecutionfails="false" failonerror="false"> <arg value="fetch" /> <arg value="--tags" /> </exec> <exec executable="${git.executable}" outputproperty="git.describe" errorproperty="git.describe.error" failifexecutionfails="false" failonerror="false"> <arg value="describe" /> <arg value="--dirty" /> <arg value="--always" /> </exec> <property name="git.describe" value="" /> <echo file="target/generated-sources/version/org/neo4j/${short-name}/impl/ComponentVersion.java">package org.neo4j.${short-name}.impl; import org.neo4j.kernel.Version; import org.neo4j.helpers.Service; @Service.Implementation(Version.class) public class ComponentVersion extends Version { public ComponentVersion() { super("${project.artifactId}", "${project.version}"); } @Override public String getRevision() { return "${git.describe}"; } } </echo> </target> </configuration> <goals><goal>run</goal></goals> </execution> <execution> <id>generate-source-based-documentation</id> <phase>process-classes</phase> <configuration> <target> <java classname="org.neo4j.tooling.GenerateConfigDocumentation" classpathref="maven.compile.classpath" failonerror="true"> <arg value="org.neo4j.graphdb.factory.GraphDatabaseSettingsResourceBundle" /> <arg value="${project.build.directory}/docs/ops/configuration-attributes.txt" /> </java> </target> </configuration> <goals><goal>run</goal></goals> </execution> </executions> <dependencies> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant-launcher</artifactId> <version>1.8.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals><goal>add-source</goal></goals> <configuration> <sources> <source>target/generated-sources/version</source> </sources> </configuration> </execution> </executions> </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> <groups> <group> <title>Graph database</title> <packages>org.neo4j.kernel:org.neo4j.graphdb:org.neo4j.kernel.*:org.neo4j.graphdb.*</packages> </group> <group> <title>Helpers</title> <packages>org.neo4j.helpers:org.neo4j.helpers.*</packages> </group> <group> <title>Tooling</title> <packages>org.neo4j.tooling:org.neo4j.tooling.*</packages> </group> </groups> </configuration> <reports> <report>javadoc</report> </reports> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <version>2.3</version> <configuration> <includes> <include>org/neo4j/graphdb/**</include> </includes> </configuration> </plugin> </reportPlugins> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <groups> <group> <title>Graph database</title> <packages>org.neo4j.kernel:org.neo4j.graphdb:org.neo4j.kernel.*:org.neo4j.graphdb.*</packages> </group> <group> <title>Helpers</title> <packages>org.neo4j.helpers:org.neo4j.helpers.*</packages> </group> <group> <title>Tooling</title> <packages>org.neo4j.tooling:org.neo4j.tooling.*</packages> </group> </groups> </configuration> </plugin> <plugin> <groupId>org.neo4j.build.plugins</groupId> <artifactId>clirr-maven-plugin</artifactId> <version>1.0</version> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> <logResults>true</logResults> <!-- This is temporarily hard-coded, because the versionsBack attribute seems to not work on OS X, we'll need to fix that. --> <comparisonVersion>1.7</comparisonVersion> <includes> <include>org/neo4j/graphdb/**</include> </includes> <!-- These are temporary exceptions for the 1.8 release, please remove after that. --> <excludeMessageCodes> <param>6006</param><!-- Field was made final. --> </excludeMessageCodes> <excludes> <exclude>org/neo4j/graphdb/factory/GraphDatabaseSettings*UseMemoryMappedBuffers</exclude> <exclude>org/neo4j/graphdb/factory/GraphDatabaseSetting*BooleanSetting</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jta_1.1_spec</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.0</version> <optional>true</optional> </dependency> <!-- <dependency> <groupId>janino</groupId> <artifactId>janino</artifactId> <version>2.5.10</version> <optional>true</optional> </dependency> --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ow2.jotm</groupId> <artifactId>jotm-core</artifactId> <version>2.2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>geronimo-spec</groupId> <artifactId>geronimo-spec-j2ee</artifactId> <version>1.4-rc4</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <version>2.3</version> <configuration> <includes> <include>org/neo4j/graphdb/**</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <detectJavaApiLink>true</detectJavaApiLink> <detectLinks>true</detectLinks> <quiet>true</quiet> <excludePackageNames>*.impl.*</excludePackageNames> <groups> <group> <title>Graph database</title> <packages>org.neo4j.kernel:org.neo4j.graphdb:org.neo4j.kernel.*:org.neo4j.graphdb.*</packages> </group> <group> <title>Helpers</title> <packages>org.neo4j.helpers:org.neo4j.helpers.*</packages> </group> <group> <title>Tooling</title> <packages>org.neo4j.tooling:org.neo4j.tooling.*</packages> </group> </groups> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <site> <id>neo4j-site</id> <url>scpexe://static.neo4j.org/var/www/components.neo4j.org/${project.artifactId}/${project.version}</url> </site> </distributionManagement> </project>