embulk-output-s3 0.2.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/build.gradle +7 -4
- data/classpath/{aws-java-sdk-core-1.9.24.jar → aws-java-sdk-core-1.10.26.jar} +0 -0
- data/classpath/aws-java-sdk-kms-1.10.26.jar +0 -0
- data/classpath/aws-java-sdk-s3-1.10.26.jar +0 -0
- data/classpath/embulk-output-s3-1.0.0.jar +0 -0
- data/classpath/{httpclient-4.3.4.jar → httpclient-4.3.6.jar} +0 -0
- data/classpath/{httpcore-4.3.2.jar → httpcore-4.3.3.jar} +0 -0
- data/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/gradle/wrapper/gradle-wrapper.properties +2 -2
- data/src/main/java/org/embulk/output/S3FileOutputPlugin.java +4 -4
- metadata +8 -9
- data/classpath/aws-java-sdk-kms-1.9.24.jar +0 -0
- data/classpath/aws-java-sdk-s3-1.9.24.jar +0 -0
- data/classpath/embulk-output-s3-0.2.0.jar +0 -0
- data/classpath/joda-time-2.8.2.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d032d430e3aafe62fb980b9bd11016486656cf4c
|
|
4
|
+
data.tar.gz: 833295c8e4f14f5dd51396413a2a14a2990a6d0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb2b7688fcb2424313ebd552d86c4a60081240994d6b1efe5f5d791946e2e385fa71a8df8a52a02ea59bac4d22d70fb385697941839b9fd2cfae3d2607cade43
|
|
7
|
+
data.tar.gz: fcab1a115ca785ac9af2b17c35c227a280f8d71ee5ab98139428f9712b69bee3b0560a7b77dba0198233d72768d1fb1417e4b76c0346a699352d6682d582d7ff
|
data/build.gradle
CHANGED
|
@@ -12,12 +12,15 @@ configurations {
|
|
|
12
12
|
provided
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
version = "0.
|
|
15
|
+
version = "1.0.0"
|
|
16
|
+
|
|
17
|
+
sourceCompatibility = 1.7
|
|
18
|
+
targetCompatibility = 1.7
|
|
16
19
|
|
|
17
20
|
dependencies {
|
|
18
|
-
compile "org.embulk:embulk-core:0.5
|
|
19
|
-
provided "org.embulk:embulk-core:0.5
|
|
20
|
-
compile "com.amazonaws:aws-java-sdk-s3:1.
|
|
21
|
+
compile "org.embulk:embulk-core:0.7.5"
|
|
22
|
+
provided "org.embulk:embulk-core:0.7.5"
|
|
23
|
+
compile "com.amazonaws:aws-java-sdk-s3:1.10.26"
|
|
21
24
|
testCompile "junit:junit:4.+"
|
|
22
25
|
}
|
|
23
26
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Tue Aug 11 00:26:20 PDT 2015
|
|
2
2
|
distributionBase=GRADLE_USER_HOME
|
|
3
3
|
distributionPath=wrapper/dists
|
|
4
4
|
zipStoreBase=GRADLE_USER_HOME
|
|
5
5
|
zipStorePath=wrapper/dists
|
|
6
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.
|
|
6
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip
|
|
@@ -8,7 +8,7 @@ import java.util.IllegalFormatException;
|
|
|
8
8
|
import java.util.List;
|
|
9
9
|
import java.util.Locale;
|
|
10
10
|
|
|
11
|
-
import org.embulk.config.
|
|
11
|
+
import org.embulk.config.TaskReport;
|
|
12
12
|
import org.embulk.config.Config;
|
|
13
13
|
import org.embulk.config.ConfigDefault;
|
|
14
14
|
import org.embulk.config.ConfigDiff;
|
|
@@ -210,8 +210,8 @@ public class S3FileOutputPlugin implements FileOutputPlugin {
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
@Override
|
|
213
|
-
public
|
|
214
|
-
|
|
213
|
+
public TaskReport commit() {
|
|
214
|
+
TaskReport report = Exec.newTaskReport();
|
|
215
215
|
return report;
|
|
216
216
|
}
|
|
217
217
|
}
|
|
@@ -247,7 +247,7 @@ public class S3FileOutputPlugin implements FileOutputPlugin {
|
|
|
247
247
|
|
|
248
248
|
@Override
|
|
249
249
|
public void cleanup(TaskSource taskSource, int taskCount,
|
|
250
|
-
List<
|
|
250
|
+
List<TaskReport> successTaskReports) {
|
|
251
251
|
}
|
|
252
252
|
|
|
253
253
|
@Override
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-s3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Manabu Takayama
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -56,15 +56,14 @@ files:
|
|
|
56
56
|
- lib/embulk/output/s3.rb
|
|
57
57
|
- src/main/java/org/embulk/output/S3FileOutputPlugin.java
|
|
58
58
|
- src/test/java/org/embulk/output/TestS3FileOutputPlugin.java
|
|
59
|
-
- classpath/aws-java-sdk-core-1.
|
|
60
|
-
- classpath/aws-java-sdk-kms-1.
|
|
61
|
-
- classpath/aws-java-sdk-s3-1.
|
|
59
|
+
- classpath/aws-java-sdk-core-1.10.26.jar
|
|
60
|
+
- classpath/aws-java-sdk-kms-1.10.26.jar
|
|
61
|
+
- classpath/aws-java-sdk-s3-1.10.26.jar
|
|
62
62
|
- classpath/commons-codec-1.6.jar
|
|
63
63
|
- classpath/commons-logging-1.1.3.jar
|
|
64
|
-
- classpath/embulk-output-s3-0.
|
|
65
|
-
- classpath/httpclient-4.3.
|
|
66
|
-
- classpath/httpcore-4.3.
|
|
67
|
-
- classpath/joda-time-2.8.2.jar
|
|
64
|
+
- classpath/embulk-output-s3-1.0.0.jar
|
|
65
|
+
- classpath/httpclient-4.3.6.jar
|
|
66
|
+
- classpath/httpcore-4.3.3.jar
|
|
68
67
|
homepage: https://github.com/llibra/embulk-output-s3
|
|
69
68
|
licenses:
|
|
70
69
|
- MIT
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|