build.gradle

 1apply plugin: 'java-library'
 2
 3repositories {
 4    google()
 5    jcenter()
 6    mavenCentral()
 7}
 8
 9dependencies {
10    implementation 'rocks.xmpp:precis:1.0.0'
11}
12
13sourceCompatibility = "8"
14targetCompatibility = "8"