Henri Gomez commented on Bug JENKINS-15260

Olivier kindly provide help and fixed pom.xml

I also updated my settings.xml like this :

<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

        <interactiveMode>true</interactiveMode>
        <offline>false</offline>

        <servers>
                <server>
                        <id>maven.jenkins-ci.org</id>
                        <username>hgomez</username>
                        <password>myverysecretpassword</password>
                </server>
        </servers>

        <profiles>
                <profile>
                        <id>normal</id>
                        <activation>
                                <activeByDefault>true</activeByDefault>
                        </activation>
                        <repositories>
                                <repository>
                                        <id>repo.jenkins-ci.</id>
                                        <url>http://repo.jenkins-ci.org/public/</url>
                                        <releases>
                                                <enabled>true</enabled>
                                        </releases>
                                        <snapshots>
                                                <enabled>true</enabled>
                                        </snapshots>
                                </repository>
                        </repositories>
                        <pluginRepositories>
                                <pluginRepository>
                                        <id>repo.jenkins-ci.</id>
                                        <url>http://repo.jenkins-ci.org/public/</url>
                                        <releases>
                                                <enabled>true</enabled>
                                        </releases>
                                        <snapshots>
                                                <enabled>true</enabled>
                                        </snapshots>
                                </pluginRepository>
                        </pluginRepositories>
                </profile>
        </profiles>

</settings>
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to