]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Introduce Lib and Dep minimal
[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>1.1.4-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.detached</module>
14 <module>org.argeo.slc.dep.minimal</module>
15 <module>org.argeo.slc.dep.backend</module>
16 <module>org.argeo.slc.dep.eclipse</module>
17 <module>org.argeo.slc.dep.rcp</module>
18 <module>org.argeo.slc.dep.rap</module>
19 </modules>
20 <build>
21 <resources>
22 <resource>
23 <directory>.</directory>
24 <includes>
25 <include>*.inf</include>
26 </includes>
27 </resource>
28 </resources>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.felix</groupId>
32 <artifactId>maven-bundle-plugin</artifactId>
33 </plugin>
34 </plugins>
35 </build>
36 <profiles>
37 <profile>
38 <id>rpmbuild</id>
39 <build>
40 <plugins>
41 <plugin>
42 <artifactId>maven-antrun-plugin</artifactId>
43 <executions>
44 <execution>
45 <phase>install</phase>
46 <goals>
47 <goal>run</goal>
48 </goals>
49 <configuration>
50 <target>
51 <copy todir="${rpm.stagingRepository}" verbose="true" failonerror="false">
52 <fileset dir="${project.build.directory}/rpm" includes="*/RPMS/**/*.rpm" />
53 <flattenmapper />
54 </copy>
55 </target>
56 </configuration>
57 </execution>
58 </executions>
59 </plugin>
60 </plugins>
61 </build>
62 </profile>
63 </profiles>
64 </project>