aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/build.gradle
blob: e0eb8dafa0aa19e2fc28b6f0a8822d388335ecf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
plugins {
    id 'com.jfrog.artifactory' version '4.0.0'
    id 'com.jfrog.bintray' version '1.6'
}

apply plugin: 'java'
apply from: "${rootDir}/publish.gradle"

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.jcraft:jzlib:1.1.3'
    compile 'org.connectbot:simplesocks:1.0.1'
    compile 'net.vrallev.ecc:ecc-25519-java:1.0.1'

    testCompile 'junit:junit:4.12'
}