forked from sparsick/comparison-java-ssh-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (23 loc) · 717 Bytes
/
Copy pathbuild.gradle
File metadata and controls
27 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'commons-io:commons-io:2.11.0'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.apache.commons:commons-vfs2:2.9.0'
// implementation 'com.jcraft:jsch:0.1.55'
implementation 'com.github.mwiede:jsch:0.2.1'
implementation 'com.hierynomus:sshj:0.33.0'
}
test {
useJUnitPlatform()
}