Skip to content

Commit 8fa1d9c

Browse files
authored
Merge pull request #104 from embulk/fix-bintrayUpload-afterEvaluate
Fix bintrayUpload with afterEvaluate
2 parents ca3b7b4 + 5a3683a commit 8fa1d9c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

build.gradle

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,21 @@ subprojects {
4141
pkg {
4242
userOrg = 'embulk-input-s3'
4343
repo = 'maven'
44-
name = project.name
45-
desc = project.description
44+
afterEvaluate {
45+
name = project.name
46+
desc = project.description
47+
}
4648
websiteUrl = 'https://github.com/embulk/embulk-input-s3'
4749
issueTrackerUrl = 'https://github.com/embulk/embulk-input-s3/issues'
4850
vcsUrl = 'https://github.com/embulk/embulk-input-s3.git'
4951
licenses = ['Apache-2.0']
5052
labels = ['embulk', 'java']
5153
publicDownloadNumbers = true
5254

53-
version {
54-
name = project.version
55+
afterEvaluate {
56+
version {
57+
name = project.version
58+
}
5559
}
5660
}
5761
}

0 commit comments

Comments
 (0)