As suggested, if I specify my remote repo as
maven.repo.remote=http://www.ibiblio.org/maven/,http://my.company.com/maven/
how do I specify my deployment should go to http://my.company.com/maven and not http://ibilio.org/maven?
There two ways: 1. specify it in any properties e.g. ~/build.properties or project.properties maven.repo.central=my.company.com maven.repo.central.directory=/var/www/maven (path in server's filesystem) maven.remote.group=group the file should belong to
2. specify it in project.xml <distributionSite>my.company.com</distributionSite> <distributionDirectory>/var/www/maven</distributionDirectory> The group should go from properties.
As you see there are some inconsistencies, but there are managable.
-- Norbert Pabiś
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]