Skip to content

Commit

Permalink
pasto: braking usage of MavenPublications
Browse files Browse the repository at this point in the history
  • Loading branch information
vvlevchenko committed Apr 26, 2018
1 parent d60ffcc commit be95f3b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ class BintrayUploadTask extends DefaultTask {
} else {
logger.error("{}: Could not find publication: {}.", path, it);
}
} else if (conf instanceof MavenPublication) {
return collectArtifacts((Configuration) it)
} else if (it instanceof MavenPublication) {
return collectArtifacts((MavenPublication) it)
} else {
logger.error("{}: Unsupported publication type: {}.", path, it.class)
}
Expand Down

0 comments on commit be95f3b

Please sign in to comment.