I run maven 3.0.4 and my settings.xml are in $M2_HOME/conf. Here is it's content: <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <pluginGroups> <pluginGroup>org.jenkins-ci.tools</pluginGroup> </pluginGroups> <proxies> </proxies> <servers> <server> <id>github</id> <username>[GITHUB_USER]</username> <password>[GITHUB_PASSWORD]</password> </server> </servers> <mirrors> <mirror> <id>repo.jenkins-ci.org</id> <url>http://repo.jenkins-ci.org/public/</url> <mirrorOf>m.g.o-public</mirrorOf> </mirror> </mirrors> <profiles> <profile> <id>jenkins</id> <activation> <activeByDefault>true</activeByDefault> <!-- change this to false, if you don't like to have it on per default --> </activation> <repositories> <repository> <id>repo.jenkins-ci.org</id> <url>http://repo.jenkins-ci.org/public/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>repo.jenkins-ci.org</id> <url>http://repo.jenkins-ci.org/public/</url> </pluginRepository> </pluginRepositories> </profile> </profiles> </settings>
Can version of maven be the course of problem? AFAIK, there are some issues with releasing with MAVEN 3.X On Thursday, April 16, 2015 at 11:58:22 AM UTC+3, Dzmitry Kashlach wrote: > > Hi, > > I have a published plugin, which I'd like to update and make this update > visible through Jenkins update center. > https://wiki.jenkins-ci.org/display/JENKINS/BlazeMeter+Plugin > I've synced up jenkinsci fork with my repository and marked stable > revision with a tag. > > Few questions: > 1. Is running "mvn release:prepare release:perform" required operation for > Jenkins update center? I do not want to have "SNAPSHOT" ending in plugin > version, but mvn requires it. > 2. Are any other configurations in pom.xml required? > > Thanks in advance. > > P.S. I've a newbie on this procedure. Please, point me to appropriate WIKI > page if it's already described there. > -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/a03ed8f3-e5b4-4011-80b3-ac1ba80eb8ce%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
