]> nmode's Git Repositories - signal-cli/blob - build.gradle
Add systemd service file with instance variable
[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 = 'org.asamk.textsecure.Main'
8
9 version = '0.2.0'
10
11 repositories {
12 maven {
13 url "https://raw.github.com/AsamK/maven/master/releases/"
14 }
15 mavenCentral()
16 }
17
18 dependencies {
19 compile 'org.whispersystems:textsecure-java:1.8.3fetchMessages'
20 compile 'com.madgag.spongycastle:prov:1.54.0.0'
21 compile 'commons-io:commons-io:2.4'
22 compile 'net.sourceforge.argparse4j:argparse4j:0.7.0'
23 compile 'org.freedesktop.dbus:dbus-java:2.7.0'
24 }
25
26 jar {
27 manifest {
28 attributes(
29 'Implementation-Title': project.name,
30 'Implementation-Version': project.version,
31 'Main-Class': project.mainClassName,
32 )
33 }
34 }