-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Along with it, - Upgrade the Gradle plugin for Embulk plugins to v0.6.2 - Clean up build.gradle - Move LICENSE and NOTICE files under META-INF/ - Use Java toolchain - Test with full messages - Disable Gradle's "Module Metadata" - Add a Gradle task checkDependencies - Add compileOnly dependencies as "provided" in pom.xml
- Loading branch information
Showing
7 changed files
with
340 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.7=compileClasspath,runtimeClasspath | ||
com.fasterxml.jackson.core:jackson-core:2.6.7=compileClasspath,runtimeClasspath | ||
com.fasterxml.jackson.core:jackson-databind:2.6.7.5=compileClasspath,runtimeClasspath | ||
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=compileClasspath,runtimeClasspath | ||
com.jcraft:jsch:0.1.55=compileClasspath,runtimeClasspath | ||
com.sun.xml.bind:jaxb-core:2.2.11=compileClasspath,runtimeClasspath | ||
com.sun.xml.bind:jaxb-impl:2.2.11=compileClasspath,runtimeClasspath | ||
commons-beanutils:commons-beanutils-core:1.8.3=compileClasspath,runtimeClasspath | ||
commons-io:commons-io:2.6=compileClasspath,runtimeClasspath | ||
commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath | ||
javax.activation:activation:1.1.1=compileClasspath,runtimeClasspath | ||
javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath | ||
javax.xml.bind:jaxb-api:2.2.11=compileClasspath,runtimeClasspath | ||
org.apache.bval:bval-core:0.5=compileClasspath,runtimeClasspath | ||
org.apache.bval:bval-jsr303:0.5=compileClasspath,runtimeClasspath | ||
org.apache.commons:commons-lang3:3.1=compileClasspath,runtimeClasspath | ||
org.apache.commons:commons-vfs2:2.2=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-spi:0.11=compileClasspath | ||
org.embulk:embulk-util-config:0.3.4=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-util-retryhelper:0.9.0=compileClasspath,runtimeClasspath | ||
org.msgpack:msgpack-core:0.8.24=compileClasspath | ||
org.slf4j:slf4j-api:2.0.7=compileClasspath | ||
empty= |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Fri Feb 28 15:19:13 JST 2020 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-bin.zip |
Oops, something went wrong.