]> nmode's Git Repositories - signal-cli/blob - build.gradle
Fix groups for upgraded clients
[signal-cli] / build.gradle
1 apply plugin: 'java'
2 apply plugin: 'application'
3
4 sourceCompatibility = JavaVersion.VERSION_1_7
5 targetCompatibility = JavaVersion.VERSION_1_7
6
7 mainClassName = 'cli.Main'
8
9 version = '0.1.0'
10
11 repositories {
12 mavenCentral()
13 }
14
15 dependencies {
16 compile 'org.whispersystems:textsecure-java:1.8.3'
17 compile 'com.madgag.spongycastle:prov:1.53.0.0'
18 compile 'commons-io:commons-io:2.4'
19 compile 'net.sourceforge.argparse4j:argparse4j:0.5.0'
20 }
21
22 jar {
23 manifest {
24 attributes(
25 'Implementation-Title': project.name,
26 'Implementation-Version': project.version,
27 'Main-Class': project.mainClassName,
28 )
29 }
30 }