Skip to content

Commit be95f3b

Browse files
committed
pasto: braking usage of MavenPublications
1 parent d60ffcc commit be95f3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/groovy/com/jfrog/bintray/gradle/BintrayUploadTask.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ class BintrayUploadTask extends DefaultTask {
214214
} else {
215215
logger.error("{}: Could not find publication: {}.", path, it);
216216
}
217-
} else if (conf instanceof MavenPublication) {
218-
return collectArtifacts((Configuration) it)
217+
} else if (it instanceof MavenPublication) {
218+
return collectArtifacts((MavenPublication) it)
219219
} else {
220220
logger.error("{}: Unsupported publication type: {}.", path, it.class)
221221
}

0 commit comments

Comments
 (0)