How to add a dependency to Maven
Add the following info.guardianproject.envoy : cronet maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>info.guardianproject.envoy</groupId>
<artifactId>cronet</artifactId>
<version>0.0.87.0.4280.66</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following info.guardianproject.envoy : cronet gradle dependency to your build.gradle
file:
implementation 'info.guardianproject.envoy:cronet:0.0.87.0.4280.66'
Gradle Kotlin DSL: Add the following info.guardianproject.envoy : cronet gradle kotlin dependency to your build.gradle.kts
file:
implementation("info.guardianproject.envoy:cronet:0.0.87.0.4280.66")
How to add a dependency to SBT Scala
SBT Scala: Add the following info.guardianproject.envoy : cronet sbt scala dependency to your build.sbt
file:
libraryDependencies += "info.guardianproject.envoy" % "cronet" % "0.0.87.0.4280.66"