Skip to content

Commit a03183b

Browse files
author
Dai MIKURUBE
committed
Upgrade embulk-util-* dependencies
1 parent 27933ca commit a03183b

File tree

57 files changed

+503
-362
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+503
-362
lines changed

embulk-decoder-bzip2/NOTICE

Lines changed: 0 additions & 5 deletions
This file was deleted.

embulk-decoder-bzip2/build.gradle

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ java {
3434
dependencies {
3535
compileOnly "org.embulk:embulk-spi:0.10.44"
3636

37-
implementation "org.embulk:embulk-util-config:0.3.2"
38-
implementation "org.embulk:embulk-util-file:0.1.3"
37+
implementation "org.embulk:embulk-util-config:0.3.3"
38+
implementation "org.embulk:embulk-util-file:0.1.4"
3939
implementation "org.apache.commons:commons-compress:1.10"
4040
}
4141

@@ -48,21 +48,18 @@ embulkPlugin {
4848
jar {
4949
metaInf {
5050
from rootProject.file("LICENSE")
51-
from project.file("NOTICE")
5251
}
5352
}
5453

5554
sourcesJar {
5655
metaInf {
5756
from rootProject.file("LICENSE")
58-
from project.file("NOTICE")
5957
}
6058
}
6159

6260
javadocJar {
6361
metaInf {
6462
from rootProject.file("LICENSE")
65-
from project.file("NOTICE")
6663
}
6764
}
6865

@@ -92,6 +89,7 @@ publishing {
9289
// http://central.sonatype.org/pages/requirements.html#license-information
9390
name = "The Apache License, Version 2.0"
9491
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
92+
distribution = "repo"
9593
}
9694
}
9795

@@ -115,6 +113,20 @@ publishing {
115113
developerConnection = "scm:git:git@github.com:embulk/embulk-standards.git"
116114
url = "https://github.com/embulk/embulk-standards"
117115
}
116+
117+
withXml {
118+
if (asNode().getAt("dependencies").isEmpty()) {
119+
asNode().appendNode("dependencies")
120+
}
121+
project.configurations.compileOnly.allDependencies.each { dependency ->
122+
asNode().dependencies[0].appendNode("dependency").with {
123+
it.appendNode("groupId", dependency.group)
124+
it.appendNode("artifactId", dependency.name)
125+
it.appendNode("version", dependency.version)
126+
it.appendNode("scope", "provided")
127+
}
128+
}
129+
}
118130
}
119131
}
120132
}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.fasterxml.jackson.core:jackson-annotations:2.6.7=runtimeClasspath
5-
com.fasterxml.jackson.core:jackson-core:2.6.7=runtimeClasspath
6-
com.fasterxml.jackson.core:jackson-databind:2.6.7=runtimeClasspath
7-
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=runtimeClasspath
8-
javax.validation:validation-api:1.1.0.Final=runtimeClasspath
4+
com.fasterxml.jackson.core:jackson-annotations:2.6.7=compileClasspath,runtimeClasspath
5+
com.fasterxml.jackson.core:jackson-core:2.6.7=compileClasspath,runtimeClasspath
6+
com.fasterxml.jackson.core:jackson-databind:2.6.7.5=compileClasspath,runtimeClasspath
7+
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=compileClasspath,runtimeClasspath
8+
javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath
99
org.apache.commons:commons-compress:1.10=compileClasspath,runtimeClasspath
1010
org.embulk:embulk-spi:0.10.44=compileClasspath
11-
org.embulk:embulk-util-config:0.3.2=compileClasspath,runtimeClasspath
12-
org.embulk:embulk-util-file:0.1.3=compileClasspath,runtimeClasspath
11+
org.embulk:embulk-util-config:0.3.3=compileClasspath,runtimeClasspath
12+
org.embulk:embulk-util-file:0.1.4=compileClasspath,runtimeClasspath
1313
org.msgpack:msgpack-core:0.8.24=compileClasspath
1414
org.slf4j:slf4j-api:2.0.6=compileClasspath
1515
empty=

embulk-decoder-gzip/NOTICE

Lines changed: 0 additions & 5 deletions
This file was deleted.

embulk-decoder-gzip/build.gradle

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ java {
3434
dependencies {
3535
compileOnly "org.embulk:embulk-spi:0.10.44"
3636

37-
implementation "org.embulk:embulk-util-config:0.3.2"
38-
implementation "org.embulk:embulk-util-file:0.1.3"
37+
implementation "org.embulk:embulk-util-config:0.3.3"
38+
implementation "org.embulk:embulk-util-file:0.1.4"
3939
}
4040

4141
embulkPlugin {
@@ -47,21 +47,18 @@ embulkPlugin {
4747
jar {
4848
metaInf {
4949
from rootProject.file("LICENSE")
50-
from project.file("NOTICE")
5150
}
5251
}
5352

5453
sourcesJar {
5554
metaInf {
5655
from rootProject.file("LICENSE")
57-
from project.file("NOTICE")
5856
}
5957
}
6058

6159
javadocJar {
6260
metaInf {
6361
from rootProject.file("LICENSE")
64-
from project.file("NOTICE")
6562
}
6663
}
6764

@@ -91,6 +88,7 @@ publishing {
9188
// http://central.sonatype.org/pages/requirements.html#license-information
9289
name = "The Apache License, Version 2.0"
9390
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
91+
distribution = "repo"
9492
}
9593
}
9694

@@ -118,6 +116,20 @@ publishing {
118116
developerConnection = "scm:git:git@github.com:embulk/embulk-standards.git"
119117
url = "https://github.com/embulk/embulk-standards"
120118
}
119+
120+
withXml {
121+
if (asNode().getAt("dependencies").isEmpty()) {
122+
asNode().appendNode("dependencies")
123+
}
124+
project.configurations.compileOnly.allDependencies.each { dependency ->
125+
asNode().dependencies[0].appendNode("dependency").with {
126+
it.appendNode("groupId", dependency.group)
127+
it.appendNode("artifactId", dependency.name)
128+
it.appendNode("version", dependency.version)
129+
it.appendNode("scope", "provided")
130+
}
131+
}
132+
}
121133
}
122134
}
123135
}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.fasterxml.jackson.core:jackson-annotations:2.6.7=runtimeClasspath
5-
com.fasterxml.jackson.core:jackson-core:2.6.7=runtimeClasspath
6-
com.fasterxml.jackson.core:jackson-databind:2.6.7=runtimeClasspath
7-
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=runtimeClasspath
8-
javax.validation:validation-api:1.1.0.Final=runtimeClasspath
4+
com.fasterxml.jackson.core:jackson-annotations:2.6.7=compileClasspath,runtimeClasspath
5+
com.fasterxml.jackson.core:jackson-core:2.6.7=compileClasspath,runtimeClasspath
6+
com.fasterxml.jackson.core:jackson-databind:2.6.7.5=compileClasspath,runtimeClasspath
7+
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=compileClasspath,runtimeClasspath
8+
javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath
99
org.embulk:embulk-spi:0.10.44=compileClasspath
10-
org.embulk:embulk-util-config:0.3.2=compileClasspath,runtimeClasspath
11-
org.embulk:embulk-util-file:0.1.3=compileClasspath,runtimeClasspath
10+
org.embulk:embulk-util-config:0.3.3=compileClasspath,runtimeClasspath
11+
org.embulk:embulk-util-file:0.1.4=compileClasspath,runtimeClasspath
1212
org.msgpack:msgpack-core:0.8.24=compileClasspath
1313
org.slf4j:slf4j-api:2.0.6=compileClasspath
1414
empty=

embulk-encoder-bzip2/NOTICE

Lines changed: 0 additions & 5 deletions
This file was deleted.

embulk-encoder-bzip2/build.gradle

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ java {
3434
dependencies {
3535
compileOnly "org.embulk:embulk-spi:0.10.44"
3636

37-
implementation "org.embulk:embulk-util-config:0.3.2"
38-
implementation "org.embulk:embulk-util-file:0.1.3"
37+
implementation "org.embulk:embulk-util-config:0.3.3"
38+
implementation "org.embulk:embulk-util-file:0.1.4"
3939
implementation "org.apache.commons:commons-compress:1.10"
4040
}
4141

@@ -48,21 +48,18 @@ embulkPlugin {
4848
jar {
4949
metaInf {
5050
from rootProject.file("LICENSE")
51-
from project.file("NOTICE")
5251
}
5352
}
5453

5554
sourcesJar {
5655
metaInf {
5756
from rootProject.file("LICENSE")
58-
from project.file("NOTICE")
5957
}
6058
}
6159

6260
javadocJar {
6361
metaInf {
6462
from rootProject.file("LICENSE")
65-
from project.file("NOTICE")
6663
}
6764
}
6865

@@ -92,6 +89,7 @@ publishing {
9289
// http://central.sonatype.org/pages/requirements.html#license-information
9390
name = "The Apache License, Version 2.0"
9491
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
92+
distribution = "repo"
9593
}
9694
}
9795

@@ -111,6 +109,20 @@ publishing {
111109
developerConnection = "scm:git:git@github.com:embulk/embulk-standards.git"
112110
url = "https://github.com/embulk/embulk-standards"
113111
}
112+
113+
withXml {
114+
if (asNode().getAt("dependencies").isEmpty()) {
115+
asNode().appendNode("dependencies")
116+
}
117+
project.configurations.compileOnly.allDependencies.each { dependency ->
118+
asNode().dependencies[0].appendNode("dependency").with {
119+
it.appendNode("groupId", dependency.group)
120+
it.appendNode("artifactId", dependency.name)
121+
it.appendNode("version", dependency.version)
122+
it.appendNode("scope", "provided")
123+
}
124+
}
125+
}
114126
}
115127
}
116128
}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.fasterxml.jackson.core:jackson-annotations:2.6.7=runtimeClasspath
5-
com.fasterxml.jackson.core:jackson-core:2.6.7=runtimeClasspath
6-
com.fasterxml.jackson.core:jackson-databind:2.6.7=runtimeClasspath
7-
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=runtimeClasspath
8-
javax.validation:validation-api:1.1.0.Final=runtimeClasspath
4+
com.fasterxml.jackson.core:jackson-annotations:2.6.7=compileClasspath,runtimeClasspath
5+
com.fasterxml.jackson.core:jackson-core:2.6.7=compileClasspath,runtimeClasspath
6+
com.fasterxml.jackson.core:jackson-databind:2.6.7.5=compileClasspath,runtimeClasspath
7+
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=compileClasspath,runtimeClasspath
8+
javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath
99
org.apache.commons:commons-compress:1.10=compileClasspath,runtimeClasspath
1010
org.embulk:embulk-spi:0.10.44=compileClasspath
11-
org.embulk:embulk-util-config:0.3.2=compileClasspath,runtimeClasspath
12-
org.embulk:embulk-util-file:0.1.3=compileClasspath,runtimeClasspath
11+
org.embulk:embulk-util-config:0.3.3=compileClasspath,runtimeClasspath
12+
org.embulk:embulk-util-file:0.1.4=compileClasspath,runtimeClasspath
1313
org.msgpack:msgpack-core:0.8.24=compileClasspath
1414
org.slf4j:slf4j-api:2.0.6=compileClasspath
1515
empty=

embulk-encoder-gzip/NOTICE

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)