aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: abb081d58b2f7ba9c93215522b63b3eb41201f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
subprojects {
    ext.version_number     = "1.3.4"
    ext.group_info         = "org.whispersystems"
    ext.curve25519_version = "0.2.4"

    if (JavaVersion.current().isJava8Compatible()) {
        allprojects {
            tasks.withType(Javadoc) {
                options.addStringOption('Xdoclint:none', '-quiet')
            }
        }
    }
}