Maven Repository - POM file for Document Database neo4j-lucene-index 1.5 1.5

Summary

Neo4j - Lucene Index.

Integration layer between Neo4j and Lucene, providing one possible implementation of the Index API..

Declaration

Here is the list of declaration for neo4j-lucene-index. 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-lucene-index</artifactId>
   <version>1.5</version>
</dependency>

If you think this Maven repository POM file listing for neo4j-lucene-index 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-lucene-index-1.5.jar

  1. maven-assembly-plugin
  2. maven-javadoc-plugin
  3. maven-surefire-plugin

Packages

The following packages are defined in the neo4j-lucene-index-1.5.jar

org.neo4j.index.impl.lucene
org.neo4j.index.lucene

POM File Source

Here is the content of the POM file.

<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.neo4j.build</groupId>
    <artifactId>parent-central</artifactId>
    <version>25</version>
    <relativePath />
  </parent>
  <groupId>org.neo4j</groupId>
  <artifactId>neo4j-lucene-index</artifactId>
  <version>1.5</version>
  <name>Neo4j - Lucene Index</name>
  <description>
Integration layer between Neo4j and Lucene, providing one possible implementation of the Index API.
  </description>
  <url>http://components.neo4j.org/${project.artifactId}/${project.version}</url>

  <properties>
    <lucene.groupId>org.apache.lucene</lucene.groupId>
    <lucene.artifactId>lucene-core</lucene.artifactId>
    <lucene.version>3.1.0</lucene.version>
    <lucene.main.version>3.1.0</lucene.main.version>
    <bundle.namespace>org.neo4j.index</bundle.namespace>
    <short-name>lucene-index</short-name>
    <license-text.header>GPL-3-header.txt</license-text.header>
  </properties>

  <packaging>jar</packaging>

  <scm>
    <url>https://github.com/neo4j/community/tree/master/lucene-index</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.5</version>
    </dependency>
    <dependency>
      <groupId>org.neo4j</groupId>
      <artifactId>neo4j-kernel</artifactId>
      <version>1.5</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>${lucene.groupId}</groupId>
      <artifactId>${lucene.artifactId}</artifactId>
      <version>${lucene.version}</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <argLine>-Xmx300m</argLine>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <id>docs-assembly</id>
            <phase>package</phase>
            <configuration>
              <attach>true</attach>
              <appendAssemblyId>true</appendAssemblyId>
              <descriptors>
                <descriptor>src/main/assembly/docs-assembly.xml</descriptor>
              </descriptors>
            </configuration>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <!-- Override parent to include impl package in javadocs. -->
          <excludePackageNames>*.dummy</excludePackageNames>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

  <distributionManagement>
    <site>
      <id>neo4j-site</id>
      <url>scpexe://components.neo4j.org/home/neo/components/${project.artifactId}/${project.version}</url>
    </site>
  </distributionManagement>

</project>