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