Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ plugins {

repositories {
mavenCentral()
jcenter()
}

group = "org.embulk"
Expand All @@ -30,12 +29,12 @@ java {
}

dependencies {
compileOnly "org.embulk:embulk-api:0.10.19"
compileOnly "org.embulk:embulk-spi:0.10.19"
compileOnly "org.embulk:embulk-api:0.10.29"
compileOnly "org.embulk:embulk-spi:0.10.29"

compile("com.amazonaws:aws-java-sdk-s3:1.11.466") {
// They conflict with embulk-core. They are once excluded here,
// and added explicitly with versions exactly the same with embulk-core:0.10.19.
// and added explicitly with versions exactly the same with embulk-core:0.10.29.
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
Expand All @@ -47,7 +46,7 @@ dependencies {

compile("com.amazonaws:aws-java-sdk-sts:1.11.466") {
// They conflict with embulk-core. They are once excluded here,
// and added explicitly with versions exactly the same with embulk-core:0.10.19.
// and added explicitly with versions exactly the same with embulk-core:0.10.29.
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
Expand All @@ -71,7 +70,7 @@ dependencies {

compile("org.embulk:embulk-util-aws-credentials:0.4.1") {
// They conflict with embulk-core. They are once excluded here,
// and added explicitly with versions exactly the same with embulk-core:0.10.19.
// and added explicitly with versions exactly the same with embulk-core:0.10.29.
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
Expand All @@ -82,7 +81,7 @@ dependencies {

compile("org.embulk:embulk-util-config:0.2.1") {
// They conflict with embulk-core. They are once excluded here,
// and added explicitly with versions exactly the same with embulk-core:0.10.19.
// and added explicitly with versions exactly the same with embulk-core:0.10.29.
exclude group: "com.fasterxml.jackson.core", module: "jackson-annotations"
exclude group: "com.fasterxml.jackson.core", module: "jackson-core"
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
Expand All @@ -91,7 +90,7 @@ dependencies {
}

// They are once excluded from transitive dependencies of other dependencies,
// and added explicitly with versions exactly the same with embulk-core:0.10.19.
// and added explicitly with versions exactly the same with embulk-core:0.10.29.
compile "com.fasterxml.jackson.core:jackson-annotations:2.6.7"
compile "com.fasterxml.jackson.core:jackson-core:2.6.7"
compile "com.fasterxml.jackson.core:jackson-databind:2.6.7"
Expand All @@ -101,12 +100,12 @@ dependencies {

testCompile "junit:junit:4.13"
testCompile "org.mockito:mockito-core:1.10.19"
testCompile "org.embulk:embulk-api:0.10.19"
testCompile "org.embulk:embulk-spi:0.10.19"
testCompile "org.embulk:embulk-core:0.10.19"
testCompile "org.embulk:embulk-core:0.10.19:tests"
testCompile "org.embulk:embulk-deps:0.10.19"
testCompile "org.embulk:embulk-standards:0.10.19"
testCompile "org.embulk:embulk-api:0.10.29"
testCompile "org.embulk:embulk-spi:0.10.29"
testCompile "org.embulk:embulk-core:0.10.29"
testCompile "org.embulk:embulk-core:0.10.29:tests"
testCompile "org.embulk:embulk-deps:0.10.29"
testCompile "org.embulk:embulk-parser-csv:0.10.29"
}

embulkPlugin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import org.embulk.spi.type.Type;
import org.embulk.spi.type.Types;
import org.embulk.spi.util.Pages;
import org.embulk.standards.CsvParserPlugin;
import org.embulk.parser.csv.CsvParserPlugin;
import org.embulk.util.config.ConfigMapper;
import org.embulk.util.config.ConfigMapperFactory;
import org.embulk.util.config.TaskMapper;
Expand Down