2014-11-24 21:54:30 +01:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
2014-11-24 22:12:03 +01:00
|
|
|
classpath files('libs/gradle-witness.jar')
|
2014-11-24 21:54:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-08 22:48:49 +01:00
|
|
|
subprojects {
|
|
|
|
apply plugin: 'witness'
|
2014-11-24 22:12:03 +01:00
|
|
|
|
2015-01-08 22:48:49 +01:00
|
|
|
ext.version_number = "1.0.1"
|
|
|
|
ext.group_info = "org.whispersystems"
|
|
|
|
ext.curve25519_version = "0.1.3"
|
2014-11-24 21:54:30 +01:00
|
|
|
|
2015-01-08 22:48:49 +01:00
|
|
|
dependencyVerification {
|
|
|
|
verify = [
|
|
|
|
'com.google.protobuf:protobuf-java:e0c1c64575c005601725e7c6a02cebf9e1285e888f756b2a1d73ffa8d725cc74',
|
|
|
|
]
|
2014-11-24 21:54:30 +01:00
|
|
|
}
|
2015-01-09 01:17:33 +01:00
|
|
|
|
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
|
|
allprojects {
|
|
|
|
tasks.withType(Javadoc) {
|
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-24 22:12:03 +01:00
|
|
|
}
|