Maven Repository - POM file for Document Database neo4j-kernel 2.1.6 2.1.6

Summary

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..

Declaration

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>2.1.6</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.





License

Name:GNU General Public License, Version 3
URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html.

Plugin

The following plugins are used in the neo4j-kernel-2.1.6.jar

  1. clirr-maven-plugin
  2. git-commit-id-plugin
  3. maven-antrun-plugin
  4. maven-compiler-plugin
  5. maven-failsafe-plugin
  6. maven-javadoc-plugin
  7. maven-site-plugin
  8. maven-surefire-plugin




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright (c) 2002-2014 "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</groupId>
    <artifactId>parent</artifactId>
    <version>2.1.6</version>
    <relativePath>../..</relativePath>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.neo4j</groupId>
  <artifactId>neo4j-kernel</artifactId>
  <version>2.1.6</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>
    <version-package>kernel.impl</version-package>
    <git.executable>git</git.executable>
    <license-text.header>GPL-3-header.txt</license-text.header>
    <licensing.prepend.text>notice-gpl-prefix.txt</licensing.prepend.text>
    <git.directory>${project.basedir}/../../.git</git.directory>
  </properties>

  <packaging>jar</packaging>

  <scm>
    <url>https://github.com/neo4j/neo4j/tree/master/community/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>neo4j-root</id>
      <activation>
        <property><name>neo4j-root</name></property>
      </activation>
      <properties>
        <git.directory>${project.basedir}/../../../.git</git.directory>
      </properties>
    </profile>
    <profile>
      <id>git-windows</id>
      <activation>
        <os><family>Windows</family></os>
      </activation>
      <properties>
        <git.executable>git.cmd</git.executable>
      </properties>
    </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>
      </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>
        <groupId>pl.project13.maven</groupId>
        <artifactId>git-commit-id-plugin</artifactId>
        <configuration>
          <dotGitDirectory>${git.directory}</dotGitDirectory>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <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.asciidoc" />
                </java>
              </target>
            </configuration>
            <goals><goal>run</goal></goals>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant-launcher</artifactId>
            <version>1.8.4</version>
          </dependency>
        </dependencies>
      </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>org.neo4j.kernel,*.impl.*</excludePackageNames>
                <groups>
                  <group>
                    <title>Graph database</title>
                    <packages>org.neo4j.graphdb: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>
              <configuration>
                <includes>
                  <include>org/neo4j/graphdb/**</include>
                </includes>
              </configuration>
            </plugin>
          </reportPlugins>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <excludePackageNames>org.neo4j.kernel,*.impl.*</excludePackageNames>
          <groups>
            <group>
              <title>Graph database</title>
              <packages>org.neo4j.graphdb: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>
        <executions>
          <execution>
            <id>default</id>
            <phase>${clirr-check-phase}</phase>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <failOnError>true</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.
           OBS: Set this to one version ahead, i.e. if you'd like it to compare against 1.9.3 then set it to 1.9.4
            -->
          <comparisonVersion>1.9.M05</comparisonVersion>
          <ignoreMaintenenceVersions>false</ignoreMaintenenceVersions>
          <includes>
            <include>org/neo4j/graphdb/**</include>
          </includes>

          <!-- Allowed breaking changes in Neo4j 2.0 -->
          <!-- These rules should be looked over and modified appropriately in 2.1 -->
          <excludeMessageCodes>
            <param>6006</param><!-- Field was made final. -->
            <param>7012</param><!-- Method added to interface -->
          </excludeMessageCodes>
          <excludes>
            <!-- Ignore known breaking changes introduced in 2.0 -->

            <!-- Remove reference node -->
            <exclude>org/neo4j/graphdb/GraphDatabaseService</exclude>

            <!-- Changes to isolate state per builder to avoid race conditions -->
            <exclude>org/neo4j/graphdb/factory/GraphDatabaseFactory</exclude>
            <exclude>org/neo4j/graphdb/factory/GraphDatabaseFactory$1</exclude>

            <!-- Prepping for last cleanup of public config stuff. -->
            <exclude>org/neo4j/graphdb/factory/GraphDatabaseSettings*</exclude>
            <exclude>org/neo4j/graphdb/factory/GraphDatabaseSetting*</exclude>
            <exclude>org/neo4j/graphdb/factory/GraphDatabaseSetting*</exclude>
            <exclude>org/neo4j/graphdb/factory/Title*</exclude>
            <exclude>org/neo4j/graphdb/factory/Default*</exclude>

            <!-- Batch inserter indexing interfaces moved to org.neo4j.unsafe.batchinsert -->
            <exclude>org/neo4j/graphdb/index/BatchInserterIndex</exclude>
            <exclude>org/neo4j/graphdb/index/BatchInserterIndexProvider</exclude>

            <!-- IndexProvider replaced by KernelExtension -->
            <exclude>org/neo4j/graphdb/index/IndexProvider</exclude>
            <exclude>org/neo4j/graphdb/index/IndexIterable</exclude>

            <!-- #getPropertyValues() deprecated in favour of #getPropertyKeys() + #getProperty() -->
            <exclude>org/neo4j/graphdb/PropertyContainer</exclude>

            <!-- Traverser changed to be a ResourceIterable -->
            <exclude>org/neo4j/graphdb/traversal/Traverser</exclude>

            <!-- ResourceIterator extends Resource (which extends AutoCloseable), instead of Closeable -->
            <exclude>org/neo4j/graphdb/ResourceIterator</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <!-- main dependencies, internal -->
    <dependency>
      <groupId>org.neo4j</groupId>
      <artifactId>neo4j-primitive-collections</artifactId>
      <version>${project.version}</version>
    </dependency>

    <!-- main dependencies, external -->
    <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>
      <optional>true</optional>
    </dependency>

    <!-- test dependencies -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-all</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-module-junit4</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-api-mockito</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.jotm</groupId>
      <artifactId>jotm-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>geronimo-spec</groupId>
      <artifactId>geronimo-spec-j2ee</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>