Skip to content

Commit a5440b2

Browse files
Merge pull request #48 from embulk/replace_commons-logging
Replace commons logging
2 parents 9172763 + ef7e2ab commit a5440b2

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.3.6 - 2021-04-06
2+
* [maintenance] Replace commons-logging by jcl-over-slf4j
3+
14
## 0.3.5 - 2021-02-02
25
* [maintenance] Support OpenSsh key
36

build.gradle

+8-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313
}
1414

1515
group = "org.embulk.input.sftp"
16-
version = "0.3.5"
16+
version = "0.3.6"
1717
description = "Reads files stored on remote server using SFTP."
1818

1919
sourceCompatibility = 1.8
@@ -25,9 +25,14 @@ tasks.withType(JavaCompile) {
2525

2626
dependencies {
2727
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+
}
2934
compile "commons-io:commons-io:2.6"
30-
compile "com.github.mwiede:jsch:0.1.60"
35+
compile "com.jcraft:jsch:0.1.55"
3136

3237
testCompile "junit:junit:4.13"
3338
testCompile "org.embulk:embulk-core:0.9.23:tests"
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# 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
55
commons-io:commons-io:2.6
6-
commons-logging:commons-logging:1.2
76
org.apache.commons:commons-vfs2:2.2
7+
org.slf4j:jcl-over-slf4j:1.7.12

0 commit comments

Comments
 (0)