Hi Christian, It looks like the tag that was made was a snapshot - not a release - so no release has been made.
This is most likley caused by either 1) user error or 2) using a newish git client in a non english locale, and an old version of the maven-release-plugin. Assuming you didn't give the release a "-SNAPSHOT" version then most likely you are falling into option 2 (http://jira.codehaus.org/browse/MRELEASE-812). in this case I would override the version of the release pluigin in your pom to 2.5 - that way you won't forget the workaround next time <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId >maven-release-plugin</artifactId> <!-- work around MRELEASE-875 --> < version>2.5</version> </plugin> </plugins> On Tuesday, 4 November 2014 13:54:02 UTC, Christian wrote: > > I have already read Working around common issues but it did not help me. > > I do not have the build log left since I thought that everything wen't > fine and it got published to github as it used to. > > Is there some way to trigger the update center to retrieve the information > from github? > > On Mon, Nov 3, 2014 at 11:49 AM, Kanstantsin Shautsou < > [email protected] <javascript:>> wrote: > >> Post build log and check Working around common issues >> >> On Monday, November 3, 2014 1:34:09 PM UTC+3, Christian wrote: >>> >>> Hi, >>> >>> I made a release the same way as I always do for the claim-plugin and >>> the plugin got published to github 20 days ago: >>> https://github.com/jenkinsci/claim-plugin/releases/tag/claim-2.4 >>> >>> Although it does not show up in the Jenkins repo: >>> http://repo.jenkins-ci.org/releases/org/jenkins-ci/plugins/claim/ >>> >>> Following point #5 in the Help my plugin do not show up in the update >>> center >>> <https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins#HostingPlugins-Help%5C!Mypluginisnotshowingupintheupdatecenter> >>> I >>> now contact this list for further assistance. >>> >>> Thanks, >>> Christian >>> >> -- >> You received this message because you are subscribed to the Google Groups >> "Jenkins Developers" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> For more options, visit https://groups.google.com/d/optout. >> > > -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
