File tree 3 files changed +7
-7
lines changed
src/main/java/org/embulk/output/ftp
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
sudo : required
2
2
language : java
3
3
jdk :
4
- - oraclejdk8
4
+ - openjdk8
5
5
services :
6
6
- docker
7
7
before_script :
Original file line number Diff line number Diff line change @@ -17,20 +17,20 @@ configurations {
17
17
provided
18
18
}
19
19
20
- version = " 0.2.2 "
20
+ version = " 0.2.3 "
21
21
22
22
sourceCompatibility = 1.8
23
23
targetCompatibility = 1.8
24
24
25
25
dependencies {
26
- compile " org.embulk:embulk-core:0.9.11 "
27
- provided " org.embulk:embulk-core:0.9.11 "
26
+ compile " org.embulk:embulk-core:0.9.20 "
27
+ provided " org.embulk:embulk-core:0.9.20 "
28
28
compile files(" libs/ftp4j-1.7.2.jar" )
29
29
compile ' org.embulk.input.ftp:embulk-util-ftp:0.1.6'
30
30
compile " org.bouncycastle:bcpkix-jdk15on:1.52"
31
31
testCompile " junit:junit:4.+"
32
- testCompile " org.embulk:embulk-core:0.9.11 :tests"
33
- testCompile " org.embulk:embulk-standards:0.9.11 "
32
+ testCompile " org.embulk:embulk-core:0.9.20 :tests"
33
+ testCompile " org.embulk:embulk-standards:0.9.20 "
34
34
}
35
35
36
36
task classpath (type : Copy , dependsOn : [" jar" ]) {
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ public void nextFile()
190
190
filePath = separator + filePath ;
191
191
}
192
192
remoteDirectory = getRemoteDirectory (filePath , separator );
193
- file = Exec .getTempFileSpace ().createTempFile (filePath , "tmp" );
193
+ file = Exec .getTempFileSpace ().createTempFile ("tmp" );
194
194
log .info ("Writing local temporary file \" {}\" " , file .getAbsolutePath ());
195
195
output = new BufferedOutputStream (new FileOutputStream (file ));
196
196
}
You can’t perform that action at this time.
0 commit comments