Reputation: 1734
I'm attempting to learn how to publish an Android library.
I've followed the instructions from this blog:
http://florentchampigny.com/publish-a-library-to-jcenter
But when I get to the last step and press the "Add to jCenter" button I get the following error:
Please fix the following before submitting a jCenter inclusion request: - Add a POM file to the latest version of your package.
I see file listed named "Industry-0.0.0-alpha0.pom?override=1", but when I click on it I get the message:
The requested path was not found.
If it helps:
My repository is located at: https://bintray.com/labermt/Industry
My source code is located at: https://github.com/labermt/IndustrySampler
I'm totally new to this, so it could easily be something simple. I'm also looking for blogs or documentation to help me understand how to do this. This blog has gotten me the closest so far.
Thx.
Upvotes: 2
Views: 613
Reputation: 1675
All of your files contain the ?override=1
in the file path.
Bintray doesn't recognize the .pom and .jar files due to this.
You will need to re-deploy your maven files, this time without the ?override=1
in the file path.
Upvotes: 4