]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
4875a5dd2080f6e67747e8b872c76edfcd3ef997
[gpl/argeo-slc.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <version>1.1.21-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc</groupId>
10 <artifactId>dist</artifactId>
11 <packaging>pom</packaging>
12 <name>SLC Distribution</name>
13 <modules>
14 <module>slc</module>
15 <module>slc-maven</module>
16 </modules>
17 <profiles>
18 <profile>
19 <id>rpmbuild</id>
20 <build>
21 <plugins>
22 <plugin>
23 <artifactId>maven-antrun-plugin</artifactId>
24 <executions>
25 <execution>
26 <phase>install</phase>
27 <goals>
28 <goal>run</goal>
29 </goals>
30 <configuration>
31 <target>
32 <copy todir="${rpm.stagingRepository}" verbose="true" failonerror="false">
33 <fileset dir="${project.build.directory}/rpm" includes="*/RPMS/**/*.rpm" />
34 <flattenmapper />
35 </copy>
36 </target>
37 </configuration>
38 </execution>
39 </executions>
40 </plugin>
41 </plugins>
42 </build>
43 </profile>
44 </profiles>
45 </project>