Skip to content

Commit 4f66551

Browse files
committed
upgraded embulk version to v0.7.0
1 parent 9107d57 commit 4f66551

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ configurations {
1515
version = "0.1.2"
1616

1717
dependencies {
18-
compile "org.embulk:embulk-core:0.4.8"
19-
provided "org.embulk:embulk-core:0.4.8"
18+
compile "org.embulk:embulk-core:0.7.0"
19+
provided "org.embulk:embulk-core:0.7.0"
2020
// compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
2121
testCompile "junit:junit:4.+"
2222
}

gradle/wrapper/gradle-wrapper.jar

-330 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Feb 04 13:46:12 PST 2015
1+
#Tue Aug 11 00:26:20 PDT 2015
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip

src/main/java/org/embulk/output/CommandFileOutputPlugin.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import org.slf4j.Logger;
99
import com.google.common.base.Throwables;
1010
import com.google.common.collect.ImmutableList;
11-
import org.embulk.config.CommitReport;
11+
import org.embulk.config.TaskReport;
1212
import org.embulk.config.Config;
1313
import org.embulk.config.ConfigDefault;
1414
import org.embulk.config.ConfigDiff;
@@ -59,7 +59,7 @@ public ConfigDiff resume(TaskSource taskSource,
5959
@Override
6060
public void cleanup(TaskSource taskSource,
6161
int taskCount,
62-
List<CommitReport> successCommitReports)
62+
List<TaskReport> successTaskReports)
6363
{
6464
}
6565

@@ -162,9 +162,9 @@ public void abort()
162162
{
163163
}
164164

165-
public CommitReport commit()
165+
public TaskReport commit()
166166
{
167-
return Exec.newCommitReport();
167+
return Exec.newTaskReport();
168168
}
169169

170170
private void closeCurrentProcess()

0 commit comments

Comments
 (0)