Open florent37 opened 6 years ago
it only works when I launch a command like
./gradlew runtime-permission:bintrayUpload -x runtime-permission-kotlin:bintrayUpload -x runtime-permission-rx:bintrayUpload
-x
to exclude another command
I have the same error for gradlew bintrayUpload
This seems to do the trick for me --no-configure-on-demand --no-parallel
i have same error ./ gradlew module: bintrayUpload
@florent37 Resolved by:
Comment lines at MyProject/gradle.properties
file:
#org.gradle.parallel=true
#org.gradle.configureondemand=true
Or run the command at terminal with :
./gradlew :module:bintrayUpload --no-configure-on-demand --no-parallel
Bintray folks, this ticket has been open for a couple years. Can you prioritize fixing this "paper-cut" issue?
I stopped using Bintray because of this eternal bug. I decided to move to OSS Sonatype and use this Maven Gradle Plugin to publish the library. Another advantage of using OSS Sonatype is you can publish snapshot versions, which is good for testing before you publish the stable version.
I use bintrayUpload to publish all my libs to JCenter, but recently I'm facing this issue when I try to publish an artifact
For example on my repository : https://github.com/florent37/RuntimePermission Containing 3 artifacts :
I have this configuration :
Gradle Wrapper :
gradle-4.6-all.zip
When I try to publish an artifact now, running this command :
I have this issue