Skip to content

Commit

Permalink
Fix bintrayUpload with afterEvaluate
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Aug 3, 2020
1 parent ca3b7b4 commit 5a3683a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,21 @@ subprojects {
pkg {
userOrg = 'embulk-input-s3'
repo = 'maven'
name = project.name
desc = project.description
afterEvaluate {
name = project.name
desc = project.description
}
websiteUrl = 'https://github.com/embulk/embulk-input-s3'
issueTrackerUrl = 'https://github.com/embulk/embulk-input-s3/issues'
vcsUrl = 'https://github.com/embulk/embulk-input-s3.git'
licenses = ['Apache-2.0']
labels = ['embulk', 'java']
publicDownloadNumbers = true

version {
name = project.version
afterEvaluate {
version {
name = project.version
}
}
}
}
Expand Down

0 comments on commit 5a3683a

Please sign in to comment.