How to add a dependency to Maven
Add the following de.derivo.graph-app.dummy : neo4j-plugin-distribution-dummy maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>de.derivo.graph-app.dummy</groupId>
<artifactId>neo4j-plugin-distribution-dummy</artifactId>
<version>3.15.1-test-deploy-neo4j-plugin-distribution-dummy-SNAPSHOT-neo4j-4.1</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following de.derivo.graph-app.dummy : neo4j-plugin-distribution-dummy gradle dependency to your build.gradle
file:
implementation 'de.derivo.graph-app.dummy:neo4j-plugin-distribution-dummy:3.15.1-test-deploy-neo4j-plugin-distribution-dummy-SNAPSHOT-neo4j-4.1'
Gradle Kotlin DSL: Add the following de.derivo.graph-app.dummy : neo4j-plugin-distribution-dummy gradle kotlin dependency to your build.gradle.kts
file:
implementation("de.derivo.graph-app.dummy:neo4j-plugin-distribution-dummy:3.15.1-test-deploy-neo4j-plugin-distribution-dummy-SNAPSHOT-neo4j-4.1")
How to add a dependency to SBT Scala
SBT Scala: Add the following de.derivo.graph-app.dummy : neo4j-plugin-distribution-dummy sbt scala dependency to your build.sbt
file:
libraryDependencies += "de.derivo.graph-app.dummy" % "neo4j-plugin-distribution-dummy" % "3.15.1-test-deploy-neo4j-plugin-distribution-dummy-SNAPSHOT-neo4j-4.1"