Hello
I have a parent pom with a repository and a snapshot repository in them
I have now moved the repo to another server and do not wish to edit 300
project poms
I have set a profile property in the settings xml to
set altDeploymentRepository
This works fine for snapshots when I add the following to my settings xml
<id>test</id>
<properties>
<altDeploymentRepository>snapshot::default::
http://buildrepo/nexus/content/repositories/snapshots/
</altDeploymentRepository>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>test</activeProfile>
</activeProfiles>
How do I also change the location of my release repo?
Do I use a separate profile?
Can I add another altdeploymentrepository (if so how)
--
Guy Attrill