mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 16:07:30 +00:00
15 lines
324 B
Groovy
15 lines
324 B
Groovy
apply plugin: "maven"
|
|
|
|
subprojects {
|
|
ext.versionNumber = "2.13.2"
|
|
ext.groupName = "org.whispersystems"
|
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
allprojects {
|
|
tasks.withType(Javadoc) {
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
}
|
|
}
|
|
}
|
|
}
|