You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2010/10/05 11:58:54 UTC

svn commit: r1004598 - /directory/apacheds/trunk/installers/pom.xml

Author: pamarcelot
Date: Tue Oct  5 09:58:54 2010
New Revision: 1004598

URL: http://svn.apache.org/viewvc?rev=1004598&view=rev
Log:
Removed old deployment profiles.
Cleaning.

Modified:
    directory/apacheds/trunk/installers/pom.xml

Modified: directory/apacheds/trunk/installers/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/installers/pom.xml?rev=1004598&r1=1004597&r2=1004598&view=diff
==============================================================================
--- directory/apacheds/trunk/installers/pom.xml (original)
+++ directory/apacheds/trunk/installers/pom.xml Tue Oct  5 09:58:54 2010
@@ -29,12 +29,9 @@
   <name>ApacheDS Installers</name>
   <packaging>pom</packaging>
 
-  <description>
-    Generates installers for ApacheDS
-  </description>
+  <description>Generates installers for ApacheDS</description>
   
   <dependencies>
-
     <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>apacheds-service</artifactId>
@@ -46,19 +43,20 @@
     </dependency>
     
     <!--
-      Forcing this dependency as provided to avoid it 
-      being bundled in the final installers
+      Forcing the scope of this dependency as 'provided' to avoid
+      it being bundled in the final installers, as it is already 
+      bundled in the 'apacheds-service' artifact.
     -->
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
       <scope>provided</scope>
     </dependency>
-
   </dependencies>
 
   <build>
     <plugins>
+      <!-- Generating installers -->
       <plugin>
         <groupId>${project.groupId}</groupId>
         <artifactId>apacheds-installers-maven-plugin</artifactId>
@@ -173,6 +171,7 @@
           </execution>
         </executions>
       </plugin>
+      <!-- Forcing the creation of Eclipse project files -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-eclipse-plugin</artifactId>
@@ -192,440 +191,5 @@
       </plugins>
     </pluginManagement>
   </build>
-      
-    
-  <profiles>
-    <!-- Profile for deploying the Windows installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-win32</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}.exe</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-win32</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${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>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-    <!-- Profile for deploying the Linux RPM x86 installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-rpm-x86</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-server-${server.version}-x86.rpm</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <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>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-    <!-- Profile for deploying the Linux RPM x86_64 installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-rpm-x86_64</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-server-${server.version}-x86_64.rpm</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <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>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-    <!-- Profile for deploying the Mac OS X installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-macosx</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}.dmg</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-macosx</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}.dmg</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>dmg</packaging>
-                  <version>server-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-    <!-- Profile for deploying the Solaris x86 installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-solaris-x86</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}-solaris-x86.pkg</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-solaris-x86</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}-solaris-x86.pkg</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>pkg</packaging>
-                  <version>server-solaris-x86-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-          
-    <!-- Profile for deploying the Solaris Sparc installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-solaris-sparc</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}-solaris-x86.pkg</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-solaris-sparc</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}-solaris-sparc.pkg</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>pkg</packaging>
-                  <version>server-solaris-sparc-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-          
-    <!-- Profile for deploying the Debian i386 installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-debian-i386</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}-i386.deb</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-debian-i386</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}-i386.deb</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>deb</packaging>
-                  <version>server-i386-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-          
-    <!-- Profile for deploying the Debian adm64 installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-debian-amd64</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}-amd64.deb</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-debian-amd64</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}-amd64.deb</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>deb</packaging>
-                  <version>server-amd64-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-          
-    <!-- Profile for deploying the Linux Binary i386 installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-binary-i386</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}-i386.bin</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-binary-i386</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}-i386.bin</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>bin</packaging>
-                  <version>server-i386-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-          
-    <!-- Profile for deploying the Linux Binary x86_64 installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-binary-x86_64</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}-x86_64.bin</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-binary-x86_64</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}-x86_64.bin</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>bin</packaging>
-                  <version>server-x86_64-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-          
-    <!-- Profile for deploying the Archive zip installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-archive-zip</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}.zip</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-archive-zip</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}.zip</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>zip</packaging>
-                  <version>server-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-          
-    <!-- Profile for deploying the Archive tar.gz installer (if and only if it has been created) -->
-    <profile>
-      <id>deploy-installer-server-archive-tar.gz</id>
-      <activation>
-        <file>
-          <exists>target/images/apacheds-${server.version}.tar.gz</exists>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>deploy-installer-server-archive-tar.gz</id>
-                <phase>deploy</phase>
-                <configuration>
-                  <file>target/images/apacheds-${server.version}.tar.gz</file>
-                  <url>${pom.distributionManagement.snapshotRepository.url}</url>
-                  <artifactId>ApacheDirectoryInstaller</artifactId>
-                  <groupId>${pom.groupId}</groupId>
-                  <packaging>tar.gz</packaging>
-                  <version>server-${server.version}</version>
-                  <uniqueVersion>false</uniqueVersion>
-                </configuration>
-                <goals>
-                  <goal>deploy-file</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-  </profiles>
+  
 </project>