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