How to add a dependency to Maven
Add the following it.unibo.tuprolog : 2p maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>it.unibo.tuprolog</groupId>
<artifactId>2p</artifactId>
<version>0.31.5-dev0f+5a2ad7593</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following it.unibo.tuprolog : 2p gradle dependency to your build.gradle
file:
implementation 'it.unibo.tuprolog:2p:0.31.5-dev0f+5a2ad7593'
Gradle Kotlin DSL: Add the following it.unibo.tuprolog : 2p gradle kotlin dependency to your build.gradle.kts
file:
implementation("it.unibo.tuprolog:2p:0.31.5-dev0f+5a2ad7593")
How to add a dependency to SBT Scala
SBT Scala: Add the following it.unibo.tuprolog : 2p sbt scala dependency to your build.sbt
file:
libraryDependencies += "it.unibo.tuprolog" % "2p" % "0.31.5-dev0f+5a2ad7593"