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