Add Java dependency for SSH module to Gradle

Build 208 of ganymed-ssh2 is closest available version (Aug 2005)

⚠️ Modules were not tested after upgrade
This commit is contained in:
Tobi Schäfer 2021-04-05 10:37:02 +02:00
parent ac02b90699
commit 2f8160526c
5 changed files with 26 additions and 18 deletions

View file

@ -0,0 +1,8 @@
dependencies {
runtime 'ch.ethz.ganymed:ganymed-ssh2:build208'
}
task deps(type: Copy) {
from sourceSets.main.runtimeClasspath
into '.'
}