blob: 9ba1f225e1b7ac79ea13be30ebb3cae6d50cf32c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
buildscript {
dependencies {
classpath files('libs/gradle-witness.jar')
}
}
subprojects {
apply plugin: 'witness'
ext.version_number = "1.0.1"
ext.group_info = "org.whispersystems"
ext.curve25519_version = "0.1.3"
dependencyVerification {
verify = [
'com.google.protobuf:protobuf-java:e0c1c64575c005601725e7c6a02cebf9e1285e888f756b2a1d73ffa8d725cc74',
]
}
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
}
|