Skip to content

Download Liquigraphâš“

CLIâš“

For Homebrew users (Mac OS)âš“

Liquigraph is part of the standard recipes of Homebrew. You just have to run:

brew install liquigraph

Regular download (Unix & Windows)âš“

These archives contain two scripts:

  • liquigraph-cli.sh for Unix users
  • liquigraph-cli.bat for Windows users

JVMâš“

The following artefacts are available through Maven Central.

Info

If you want to try a development version (a.k.a. a SNAPSHOT version), you do not need to build from sources. You can configure your build with a custom repository:

<repositories>
  <repository>
      <id>ossrh</id>
      <name>Sonatype Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
      <snapshots>
          <enabled>true</enabled>
      </snapshots>
      <releases>
          <enabled>false</enabled>
      </releases>
  </repository>
</repositories>

Maven pluginâš“

<plugin>
    <groupId>org.liquigraph</groupId>
    <artifactId>liquigraph-maven-plugin</artifactId>
    <version>4.0.6</version>
    <configuration>
        <changelog>changelog.xml</changelog><!-- classpath location -->
        <jdbcUri>jdbc:neo4j:bolt://localhost</jdbcUri>
    </configuration>
    <executions>
        <execution>
          <id>run-migrations</id>
          <goals>
            <goal>dry-run</goal>
            <goal>run</goal>
          </goals>
        </execution>
    </executions>
</plugin>
<plugin>
    <groupId>org.liquigraph</groupId>
    <artifactId>liquigraph-maven-plugin</artifactId>
    <version>3.1.2</version>
    <configuration>
        <changelog>changelog.xml</changelog><!-- classpath location -->
        <jdbcUri>jdbc:neo4j:bolt://localhost</jdbcUri>
    </configuration>
    <executions>
        <execution>
          <id>run-migrations</id>
          <goals>
            <goal>dry-run</goal>
            <goal>run</goal>
          </goals>
        </execution>
    </executions>
</plugin>

Spring Boot starterâš“

<dependency>
    <groupId>org.liquigraph</groupId>
    <artifactId>liquigraph-spring-boot-starter</artifactId>
    <version>4.0.6</version>
</dependency>
<dependency>
    <groupId>org.liquigraph</groupId>
    <artifactId>liquigraph-spring-boot-starter</artifactId>
    <version>3.1.2</version>
</dependency>

Liquigraph Coreâš“

Caution

Liquigraph is better used through the CLI, Maven plugin or Spring Boot starter. If you want to build an integration, please file an issue and let's discuss!

<dependency>
    <groupId>org.liquigraph</groupId>
    <artifactId>liquigraph-core</artifactId>
    <version>4.0.6</version>
</dependency>
<dependency>
    <groupId>org.liquigraph</groupId>
    <artifactId>liquigraph-core</artifactId>
    <version>3.1.2</version>
</dependency>