File tree 3 files changed +13
-5
lines changed
3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.3.6 - 2021-04-06
2
+ * [ maintenance] Replace commons-logging by jcl-over-slf4j
3
+
1
4
## 0.3.5 - 2021-02-02
2
5
* [ maintenance] Support OpenSsh key
3
6
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repositories {
13
13
}
14
14
15
15
group = " org.embulk.input.sftp"
16
- version = " 0.3.5 "
16
+ version = " 0.3.6 "
17
17
description = " Reads files stored on remote server using SFTP."
18
18
19
19
sourceCompatibility = 1.8
@@ -25,9 +25,14 @@ tasks.withType(JavaCompile) {
25
25
26
26
dependencies {
27
27
compileOnly " org.embulk:embulk-core:0.9.23"
28
- compile " org.apache.commons:commons-vfs2:2.2"
28
+ compile (" org.apache.commons:commons-vfs2:2.2" ) {
29
+ exclude group : " commons-logging" , module : " commons-logging"
30
+ }
31
+ compile(" org.slf4j:jcl-over-slf4j:1.7.12" ) {
32
+ exclude group : " org.slf4j" , module : " slf4j-api"
33
+ }
29
34
compile " commons-io:commons-io:2.6"
30
- compile " com.github.mwiede :jsch:0.1.60 "
35
+ compile " com.jcraft :jsch:0.1.55 "
31
36
32
37
testCompile " junit:junit:4.13"
33
38
testCompile " org.embulk:embulk-core:0.9.23:tests"
Original file line number Diff line number Diff line change 1
1
# This is a Gradle generated file for dependency locking.
2
2
# Manual edits can break the build and are not advised.
3
3
# This file is expected to be part of source control.
4
- com.github.mwiede :jsch:0.1.60
4
+ com.jcraft :jsch:0.1.55
5
5
commons-io:commons-io:2.6
6
- commons-logging:commons-logging:1.2
7
6
org.apache.commons:commons-vfs2:2.2
7
+ org.slf4j:jcl-over-slf4j:1.7.12
You can’t perform that action at this time.
0 commit comments