grails-datastore-gorm-neo4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-datastore-gorm-neo4j</artifactId>
<version>8.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.grails</groupId>
<artifactId>grails-datastore-gorm-neo4j</artifactId>
<version>8.1.0</version>
<name>GORM for Neo4j</name>
<description>Provides a GORM Object Mapping implementation for the Neo4j Graph Database</description>
<url>https://gorm.grails.org/latest/neo4j</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>puneetbehl</id>
<name>Puneet Behl</name>
<email>behlp@objectcomputing.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:grails/gorm-neo4j.git</connection>
<developerConnection>scm:git@github.com:grails/gorm-neo4j.git</developerConnection>
<url>scm:git@github.com:grails/gorm-neo4j.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>3.0.21</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver</artifactId>
<version>4.4.14</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-datastore-gorm-validation</artifactId>
<version>8.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-datastore-gorm</artifactId>
<version>8.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.30.2-GA</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>