Thanks Felix, I'm going to test this out for the release...
I believe you need to overwrite the dist deployment URL in the local settings.xml file on the Oxylos machine, don't you ? Thanks, Pierre-Arnaud On Thu, Oct 9, 2008 at 3:03 PM, <[EMAIL PROTECTED]> wrote: > Author: felixk > Date: Thu Oct 9 06:03:37 2008 > New Revision: 703158 > > URL: http://svn.apache.org/viewvc?rev=703158&view=rev > Log: > Make deployment of dist url configurable. Default is taken from Apche TLP > pom. Can be overwritten in local settings.xml > > Modified: > directory/studio/trunk/pom.xml > directory/studio/trunk/studio/pom.xml > > Modified: directory/studio/trunk/pom.xml > URL: > http://svn.apache.org/viewvc/directory/studio/trunk/pom.xml?rev=703158&r1=703157&r2=703158&view=diff > > ============================================================================== > --- directory/studio/trunk/pom.xml (original) > +++ directory/studio/trunk/pom.xml Thu Oct 9 06:03:37 2008 > @@ -57,6 +57,8 @@ > </distributionManagement> > > <properties> > + <!-- Set deployment url for dists. Can be overwritten in the > settings.xml --> > + > > <studio.dist.url>${pom.distributionManagement.repository.url}</studio.dist.url> > <!-- Set versions for subprojects --> > <aciitemeditor.version>1.3.0-SNAPSHOT</aciitemeditor.version> > <apacheds.launcher.version>1.2.0</apacheds.launcher.version> > > Modified: directory/studio/trunk/studio/pom.xml > URL: > http://svn.apache.org/viewvc/directory/studio/trunk/studio/pom.xml?rev=703158&r1=703157&r2=703158&view=diff > > ============================================================================== > --- directory/studio/trunk/studio/pom.xml (original) > +++ directory/studio/trunk/studio/pom.xml Thu Oct 9 06:03:37 2008 > @@ -199,7 +199,7 @@ > <phase>deploy</phase> > <configuration> > > <file>../target/distributions/ApacheDirectoryStudio-linux-x86-${pom.version}-dist.tar.gz</file> > - > <url>${pom.distributionManagement.snapshotRepository.url}</url> > + <url>${studio.dist.url}</url> > <artifactId>ApacheDirectoryStudio</artifactId> > <groupId>${pom.groupId}</groupId> > <packaging>tar.gz</packaging> > @@ -361,7 +361,7 @@ > <phase>deploy</phase> > <configuration> > > <file>../target/distributions/ApacheDirectoryStudio-linux-x86_64-${pom.version}-dist.tar.gz</file> > - > <url>${pom.distributionManagement.snapshotRepository.url}</url> > + <url>${studio.dist.url}</url> > <artifactId>ApacheDirectoryStudio</artifactId> > <groupId>${pom.groupId}</groupId> > <packaging>tar.gz</packaging> > @@ -523,7 +523,7 @@ > <phase>deploy</phase> > <configuration> > > <file>../target/distributions/ApacheDirectoryStudio-linux-ppc-${pom.version}-dist.tar.gz</file> > - > <url>${pom.distributionManagement.snapshotRepository.url}</url> > + <url>${studio.dist.url}</url> > <artifactId>ApacheDirectoryStudio</artifactId> > <groupId>${pom.groupId}</groupId> > <packaging>tar.gz</packaging> > @@ -684,7 +684,7 @@ > <phase>deploy</phase> > <configuration> > > <file>../target/distributions/ApacheDirectoryStudio-win32-${pom.version}-dist.zip</file> > - > <url>${pom.distributionManagement.snapshotRepository.url}</url> > + <url>${studio.dist.url}</url> > <artifactId>ApacheDirectoryStudio</artifactId> > <groupId>${pom.groupId}</groupId> > <packaging>zip</packaging> > @@ -791,7 +791,7 @@ > <phase>deploy</phase> > <configuration> > > <file>../target/distributions/ApacheDirectoryStudio-macosx-${pom.version}-dist.tar.gz</file> > - > <url>${pom.distributionManagement.snapshotRepository.url}</url> > + <url>${studio.dist.url}</url> > <artifactId>ApacheDirectoryStudio</artifactId> > <groupId>${pom.groupId}</groupId> > <packaging>tar.gz</packaging> > > >
