You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is the section of one of my Gradle configuration files.
`Properties properties = new Properties()
properties.load(project.rootProject.file('bintray.properties').newDataInputStream())
bintray {
user = properties.getProperty('bintray.user')
key = properties.getProperty('bintray.apikey')
configurations = ['archives']
publish = true
override = true
pkg {
repo = 'maven'
publicDownloadNumbers = true
name = 'com.woodblockwithoutco.beretained-processor'
desc = 'BeRetained Processor is used to generate classes that will automatically retain non-parcelable instances on Activity config change.'
websiteUrl = project.siteUrl
vcsUrl = project.gitUrl
issueTrackerUrl = project.gitIssueTrackerUrl
labels = ['android', 'retained fragment', 'configuration change', 'apt']
licenses = ['Apache-2.0']
githubRepo = project.gitRepo
githubReleaseNotesFile = project.gitReleaseNotes
version {
name = project.libVersion
}
}`
As can be seen here, uploaded files have "?override=1" appended to their names instead of being overwritten.
The text was updated successfully, but these errors were encountered:
@DrBreen,
Thanks for reporting this issue. We've just released version 1.7.1 with a fix. It is available on Bintray and will soon be available on Gradle's Plugins Gallery.
Nice to hear! I was afraid it was me doing something wrong, since this is the first time I'm trying to upload something to BinTray.
👍 תודה על תיקון מהר
Addition: I've just tried uploading and I can confirm it works. I guess the issue can be closed now?
labermt
added a commit
to labermt/IndustrySampler
that referenced
this issue
Jun 13, 2017
Here is the section of one of my Gradle configuration files.
`Properties properties = new Properties()
properties.load(project.rootProject.file('bintray.properties').newDataInputStream())
bintray {
user = properties.getProperty('bintray.user')
key = properties.getProperty('bintray.apikey')
As can be seen here, uploaded files have "?override=1" appended to their names instead of being overwritten.
The text was updated successfully, but these errors were encountered: