]> nmode's Git Repositories - signal-cli/blob - build.gradle
Update gradle wrapper
[signal-cli] / build.gradle
1 apply plugin: 'java'
2 apply plugin: 'application'
3
4 sourceCompatibility = "1.8";
5
6 mainClassName = 'cli.Main'
7
8 repositories {
9 mavenCentral()
10 }
11
12 dependencies {
13 compile 'org.whispersystems:textsecure-java:1.6.1'
14 compile 'com.madgag.spongycastle:prov:1.52.0.0'
15 compile 'org.json:json:20141113'
16 compile 'commons-io:commons-io:2.4'
17 compile 'net.sourceforge.argparse4j:argparse4j:0.5.0'
18 }
19
20 jar {
21 baseName = 'textsecure-cli'
22 version = '0.0.2'
23 manifest {
24 attributes 'Main-Class': 'cli.Main'
25 }
26 }