mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
34 lines
827 B
Groovy
34 lines
827 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_7
|
|
targetCompatibility = JavaVersion.VERSION_1_7
|
|
|
|
mainClassName = 'org.asamk.textsecure.Main'
|
|
|
|
version = '0.2.0'
|
|
|
|
repositories {
|
|
maven {
|
|
url "https://raw.github.com/AsamK/maven/master/releases/"
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'org.whispersystems:textsecure-java:1.8.3'
|
|
compile 'com.madgag.spongycastle:prov:1.53.0.0'
|
|
compile 'commons-io:commons-io:2.4'
|
|
compile 'net.sourceforge.argparse4j:argparse4j:0.5.0'
|
|
compile 'org.freedesktop.dbus:dbus-java:2.7.0'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Implementation-Title': project.name,
|
|
'Implementation-Version': project.version,
|
|
'Main-Class': project.mainClassName,
|
|
)
|
|
}
|
|
}
|