Skip to content
Open
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
30 changes: 15 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ plugins {
id "java"
id "checkstyle"
id "maven-publish"
id "org.embulk.embulk-plugins" version "0.4.2"
id "com.github.johnrengelman.shadow" version "6.1.0" apply false
id "org.embulk.embulk-plugins" version "0.5.5"
id "io.github.goooler.shadow" version "8.1.7" apply false
id "com.palantir.git-version" version "0.12.3"
}

Expand All @@ -29,21 +29,21 @@ dependencies {
compileOnly "org.embulk:embulk-api:$embulkVersion"
compileOnly "org.embulk:embulk-spi:$embulkVersion"

compile "org.embulk:embulk-util-config:0.3.1"
compile "org.embulk:embulk-util-json:0.1.1"
compile "org.embulk:embulk-util-timestamp:0.2.1"
compile "com.fasterxml.jackson.core:jackson-databind:2.6.7" // Need to specify explicitly
compile "com.google.code.gson:gson:2.9.0"
compile "com.google.guava:guava:31.1-jre"
implementation "org.embulk:embulk-util-config:0.3.1"
implementation "org.embulk:embulk-util-json:0.1.1"
implementation "org.embulk:embulk-util-timestamp:0.2.1"
implementation "com.fasterxml.jackson.core:jackson-databind:2.6.7" // Need to specify explicitly
implementation "com.google.code.gson:gson:2.9.0"
implementation "com.google.guava:guava:31.1-jre"

compile project(path: ":shadow-kintone-java-client", configuration: "shadow")
implementation project(path: ":shadow-kintone-java-client", configuration: "shadow")

testCompile "org.embulk:embulk-api:$embulkVersion"
testCompile "org.embulk:embulk-spi:$embulkVersion"
testCompile "org.embulk:embulk-junit4:$embulkVersion"
testCompile "org.embulk:embulk-core:$embulkVersion"
testCompile "org.embulk:embulk-deps:$embulkVersion"
testCompile "org.mockito:mockito-core:4.6.1"
testImplementation "org.embulk:embulk-api:$embulkVersion"
testImplementation "org.embulk:embulk-spi:$embulkVersion"
testImplementation "org.embulk:embulk-junit4:$embulkVersion"
testImplementation "org.embulk:embulk-core:$embulkVersion"
testImplementation "org.embulk:embulk-deps:$embulkVersion"
testImplementation "org.mockito:mockito-core:4.6.1"
}

checkstyle {
Expand Down
26 changes: 26 additions & 0 deletions gradle.lockfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
com.fasterxml.jackson.core:jackson-annotations:2.6.0=compileClasspath
com.fasterxml.jackson.core:jackson-annotations:2.6.7=runtimeClasspath
com.fasterxml.jackson.core:jackson-core:2.6.7=compileClasspath,runtimeClasspath
com.fasterxml.jackson.core:jackson-databind:2.6.7=compileClasspath,runtimeClasspath
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=runtimeClasspath
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
com.google.code.gson:gson:2.9.0=compileClasspath,runtimeClasspath
com.google.errorprone:error_prone_annotations:2.11.0=compileClasspath,runtimeClasspath
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath
com.google.guava:guava:31.1-jre=compileClasspath,runtimeClasspath
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath
com.google.j2objc:j2objc-annotations:1.3=compileClasspath,runtimeClasspath
javax.validation:validation-api:1.1.0.Final=runtimeClasspath
org.checkerframework:checker-qual:3.12.0=compileClasspath,runtimeClasspath
org.embulk:embulk-api:0.10.36=compileClasspath
org.embulk:embulk-spi:0.10.36=compileClasspath
org.embulk:embulk-util-config:0.3.1=compileClasspath,runtimeClasspath
org.embulk:embulk-util-json:0.1.1=compileClasspath,runtimeClasspath
org.embulk:embulk-util-rubytime:0.3.2=runtimeClasspath
org.embulk:embulk-util-timestamp:0.2.1=compileClasspath,runtimeClasspath
org.msgpack:msgpack-core:0.8.11=compileClasspath
org.slf4j:slf4j-api:1.7.30=compileClasspath
empty=
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Oct 11 16:04:33 JST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.2-all.zip
Loading