aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'sshlib/build.gradle')
-rw-r--r--sshlib/build.gradle24
1 files changed, 24 insertions, 0 deletions
diff --git a/sshlib/build.gradle b/sshlib/build.gradle
new file mode 100644
index 0000000..ff1fe10
--- /dev/null
+++ b/sshlib/build.gradle
@@ -0,0 +1,24 @@
+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"
+
+repositories {
+ maven {
+ url 'https://dl.bintray.com/kruton/maven'
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ compile 'com.jcraft:jzlib:1.1.3'
+ compile 'org.connectbot.jsocks:jsocks:1.0.0'
+}