You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2008/03/24 13:03:32 UTC

svn commit: r640392 - /directory/installers/branches/bigbang/apacheds/pom.xml

Author: felixk
Date: Mon Mar 24 05:03:32 2008
New Revision: 640392

URL: http://svn.apache.org/viewvc?rev=640392&view=rev
Log:
deploy server snapshots

Modified:
    directory/installers/branches/bigbang/apacheds/pom.xml

Modified: directory/installers/branches/bigbang/apacheds/pom.xml
URL: http://svn.apache.org/viewvc/directory/installers/branches/bigbang/apacheds/pom.xml?rev=640392&r1=640391&r2=640392&view=diff
==============================================================================
--- directory/installers/branches/bigbang/apacheds/pom.xml (original)
+++ directory/installers/branches/bigbang/apacheds/pom.xml Mon Mar 24 05:03:32 2008
@@ -36,6 +36,7 @@
 
   <properties>
     <studio-version>1.1.0-SNAPSHOT</studio-version>
+    <server-version>1.5.2-SNAPSHOT</server-version>
   </properties>
 
   <dependencies>
@@ -657,6 +658,59 @@
               <execution>
                 <goals>
                   <goal>generate</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <artifactId>maven-deploy-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>deploy-installer-server-win32</id>
+                <phase>deploy</phase>
+                <configuration>
+                  <file>target/images/apacheds-server-{server-version}-setup.exe</file>
+                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
+                  <artifactId>ApacheDirectoryInstaller</artifactId>
+                  <groupId>${pom.groupId}</groupId>
+                  <packaging>exe</packaging>
+                  <version>server-win32-${server-version}</version>
+                  <uniqueVersion>false</uniqueVersion>
+                </configuration>
+                <goals>
+                  <goal>deploy-file</goal>
+                </goals>
+              </execution>
+              <execution>
+                <id>deploy-installer-server-rpm-x86</id>
+                <phase>deploy</phase>
+                <configuration>
+                  <file>target/images/apacheds-server-{server-version}-x86.rpm</file>
+                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
+                  <artifactId>ApacheDirectoryInstaller</artifactId>
+                  <groupId>${pom.groupId}</groupId>
+                  <packaging>rpm</packaging>
+                  <version>server-x86-${server-version}</version>
+                  <uniqueVersion>false</uniqueVersion>
+                </configuration>
+                <goals>
+                  <goal>deploy-file</goal>
+                </goals>
+              </execution>
+              <execution>
+                <id>deploy-installer-server-rpm-x86_64</id>
+                <phase>deploy</phase>
+                <configuration>
+                  <file>target/images/apacheds-server-{server-version}-x86_64.rpm</file>
+                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
+                  <artifactId>ApacheDirectoryInstaller</artifactId>
+                  <groupId>${pom.groupId}</groupId>
+                  <packaging>rpm</packaging>
+                  <version>server-x86_64-${server-version}</version>
+                  <uniqueVersion>false</uniqueVersion>
+                </configuration>
+                <goals>
+                  <goal>deploy-file</goal>
                 </goals>
               </execution>
             </executions>