mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
30 lines
649 B
Groovy
30 lines
649 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
sourceCompatibility = "1.8";
|
|
|
|
mainClassName = 'cli.Main'
|
|
|
|
version = '0.0.2'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'org.whispersystems:textsecure-java:1.8.0'
|
|
compile 'com.madgag.spongycastle:prov:1.52.0.0'
|
|
compile 'org.json:json:20141113'
|
|
compile 'commons-io:commons-io:2.4'
|
|
compile 'net.sourceforge.argparse4j:argparse4j:0.5.0'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Implementation-Title': project.name,
|
|
'Implementation-Version': project.version,
|
|
'Main-Class': project.mainClassName,
|
|
)
|
|
}
|
|
}
|