X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/067d14e1cab998de3b595f7972ca79519283883c..63aec5cb95257c9c013093f9db425a9f42443c4c:/build.gradle diff --git a/build.gradle b/build.gradle index 9ab86781..b7250a83 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,8 @@ apply plugin: 'java' apply plugin: 'application' +sourceCompatibility = "1.8"; + mainClassName = 'cli.Main' repositories { @@ -8,7 +10,7 @@ repositories { } dependencies { - compile 'org.whispersystems:textsecure-java:1.6.1' + compile 'org.whispersystems:textsecure-java:1.6.2' compile 'com.madgag.spongycastle:prov:1.52.0.0' compile 'org.json:json:20141113' compile 'commons-io:commons-io:2.4' @@ -17,7 +19,7 @@ dependencies { jar { baseName = 'textsecure-cli' - version = '0.0.1' + version = '0.0.2' manifest { attributes 'Main-Class': 'cli.Main' }