-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upload Uri Interpolation Problem on Gradle 4.8 #234
Upload Uri Interpolation Problem on Gradle 4.8 #234
Comments
Here's a build.gradle that reproduces this problem:
settings.gradle:
The output:
I think a change like this one would move to public apis and just work. |
Hey there! Any updates from JFrog team? Looks like a blocker for everyone who releases using gradle-bintray-plugin and gradle 4.8. |
@tiurikov and @emkidwell, |
* need to wait for: bintray/gradle-bintray-plugin#234 to get resolved
Hi @tiurikov and @emkidwell, I just wanted to let you know that we have released a new version (1.8.1) that should resolve the issues with Gradle 4.8. Can you please try with the new version and let us know the outcome? Thanks, |
I tested with my android-maven-publish plugin. I created a release with Gradle 4.8 and bintray 1.8.1 a few hours ago |
@AlexeiVainshtein, it works well for me! Thank for the fix! |
4.8.x has bintray URL interpolation problem bintray/gradle-bintray-plugin#234 4.9 has compatibility problem with lombok https://stackoverflow.com/questions/51375052/gradle-4-9-lombok-1-18-0-fails
Upgrade Bintray plugin to 1.8.4. bintray/gradle-bintray-plugin#234
Fixes "message:Unable to upload files: Maven group, artifact or version defined in the pom file do not match the file path" error bintray/gradle-bintray-plugin#234
Apply updated bintray plugin for fix bintray/gradle-bintray-plugin#234
Apply updated bintray plugin for fix bintray/gradle-bintray-plugin#234
Hello,
While running on Gradle 4.8-rc-2, I noticed the upload uri is being constructed incorrectly:
I debugged this locally and found that an internal api is being used at BintrayUploadTask.groovy#634. This api used to return the groupId, artifactId, and version attributes as a String, but it is now
org.gradle.api.provider.Property<String>
.Fortunately, groupId, artifactId, and version are all available on the public
MavenPublication
interface as Strings, so this can be fixed in a backwards-compatible way.See also jfrog/build-info#166.
The text was updated successfully, but these errors were encountered: