]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
SLC Repo building
[gpl/argeo-slc.git] / dep / 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>2.1.1-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>dep</artifactId>
10 <name>SLC Dependencies</name>
11 <packaging>pom</packaging>
12 <modules>
13 <module>org.argeo.slc.dep.minimal</module>
14 <module>org.argeo.slc.dep.backend</module>
15 <!-- <module>org.argeo.slc.dep.eclipse</module> -->
16 <!-- <module>org.argeo.slc.dep.rcp</module> -->
17 <!-- <module>org.argeo.slc.dep.rap</module> -->
18 </modules>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>maven-bundle-plugin</artifactId>
24 </plugin>
25 </plugins>
26 </build>
27 <profiles>
28 <profile>
29 <id>rpmbuild</id>
30 <build>
31 <plugins>
32 <plugin>
33 <artifactId>maven-antrun-plugin</artifactId>
34 <executions>
35 <execution>
36 <phase>install</phase>
37 <goals>
38 <goal>run</goal>
39 </goals>
40 <configuration>
41 <target>
42 <copy todir="${rpm.stagingRepository}" verbose="true" failonerror="false">
43 <fileset dir="${project.build.directory}/rpm" includes="*/RPMS/**/*.rpm" />
44 <flattenmapper />
45 </copy>
46 </target>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 </plugins>
52 </build>
53 </profile>
54 </profiles>
55 </project>