Skip to content

Latest commit

 

History

History
80 lines (64 loc) · 1.64 KB

build.md

File metadata and controls

80 lines (64 loc) · 1.64 KB

Adding greyhound to your build

All Greyhound modules can be found in Maven Central Repository.

Greyhound Scala (Future) API

To add a dependency on greyhound-future using Sbt, use the following:

libraryDependencies ++= Seq(
  "com.wix" % "greyhound-future_2.12" % "0.1.2",
  // other dependencies separated by commas
)

To add a dependency using Maven:

<dependency>
  <groupId>com.wix</groupId>
  <artifactId>greyhound-future_2.12</artifactId>
  <version>0.1.2</version>
</dependency>

To add a dependency using Gradle:

dependencies {
  implementation("com.wix.guava:greyhound-future_2.12:0.1.2")
  // other dependencies
}

Greyhound Java API

To add a dependency on greyhound-java using Maven, use the following:

<dependency>
  <groupId>com.wix</groupId>
  <artifactId>greyhound-java</artifactId>
  <version>0.1.2</version>
</dependency>

To add a dependency using Gradle:

dependencies {
  implementation("com.wix.guava:greyhound-java:0.1.2")
  // other dependencies
}

Greyhound ZIO API

To add a dependency on greyhound with zio using Sbt, use the following:

libraryDependencies ++= Seq(
  "com.wix" % "greyhound-core_2.12" % "0.1.2",
  // other dependencies separated by commas
)

To add a dependency using Maven:

<dependency>
  <groupId>com.wix</groupId>
  <artifactId>greyhound-core_2.12</artifactId>
  <version>0.1.2</version>
</dependency>

To add a dependency using Gradle:

dependencies {
  implementation("com.wix.guava:greyhound-core_2.12:0.1.2")
  // other dependencies
}