Hello,

I am currently testing Archiva 1.4x (standalone mode with the new UI), and I noticed that I have to change the access path to the repositories in the maven settings.xml file and probably in all of my poms that refer to them (for example, in the distributionManagement tags).

For instance, instead of using a path which begins by "archiva" in 1.3.x:

        <mirrors>
                <mirror>
                        <id>archiva.central</id>
<url>http://${env.ARTIFACTS_REPOSITORY_HOST}:${env.ARTIFACTS_REPOSITORY_PORT}/archiva/repository/internal</url>
<mirrorOf>*,!internal,!snapshots</mirrorOf>
                </mirror>
        </mirrors>

I have to use a path which begins directly by "repository":

        <mirrors>
                <mirror>
                        <id>archiva.central</id>
<url>http://${env.ARTIFACTS_REPOSITORY_HOST}:${env.ARTIFACTS_REPOSITORY_PORT}/repository/internal</url>
<mirrorOf>*,!internal,!snapshots</mirrorOf>
                </mirror>
        </mirrors>

Did I miss something, a parameter ?

Regards

Patrice

Reply via email to