aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/build.gradle
blob: 5949330d023181a7649b354521f6cf2848c8c264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1'
    }
}

apply plugin: 'java'
apply plugin: 'com.jfrog.bintray'
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'
}