Skip to content

Commit

Permalink
added missing pom
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaverner committed Sep 18, 2018
1 parent f9171e1 commit 15aa424
Showing 1 changed file with 108 additions and 0 deletions.
108 changes: 108 additions & 0 deletions neo4j/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.amanzi</groupId>
<artifactId>spatial-3d-parent</artifactId>
<version>0.1.0</version>
</parent>

<artifactId>spatial-3d-neo4j</artifactId>
<name>Spatial 3D :: Neo4j</name>
<description>Neo4j Integration (procedures and functions) for 3D Spatial Analysis</description>
<packaging>jar</packaging>

<dependencies>

<dependency>
<groupId>org.amanzi</groupId>
<artifactId>spatial-3d-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.amanzi</groupId>
<artifactId>spatial-3d-algo</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-io</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>

<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-slf4j</artifactId>
<version>${neo4j.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<minimizeJar>true</minimizeJar>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<!-- Neo4j Procedures require Java 8 -->
<compilerVersion>${javac.target}</compilerVersion>
<source>${javac.target}</source>
<target>${javac.target}</target>
<compilerArgs>
<arg>-AIgnoreContextWarnings</arg>
<arg>-AGeneratedDocumentationPath=target/generated-documentation</arg>
<arg>-ADocumentation.FieldDelimiter=¦</arg>
<arg>-ADocumentation.ExportedHeaders=qualified name¦description</arg>
<arg>-ADocumentation.QuotedFields=false</arg>
<arg>-ADocumentation.DelimitedFirstField=true</arg>
<arg>-ADocumentation.ExportGrouping=PACKAGE</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 15aa424

Please sign in to comment.