]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
Add missing build.properties
[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"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.13.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>dep</artifactId>
11 <name>SLC Dependencies</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.slc.dep.detached</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 <dependencies>
37 <!-- For target platform generation -->
38 <dependency>
39 <groupId>org.argeo.slc.runtime</groupId>
40 <artifactId>org.argeo.slc.unit</artifactId>
41 <version>0.13.1-SNAPSHOT</version>
42 <scope>test</scope>
43 </dependency>
44 </dependencies>
45 <profiles>
46 <profile>
47 <id>rpmbuild</id>
48 <build>
49 <plugins>
50 <plugin>
51 <artifactId>maven-antrun-plugin</artifactId>
52 <executions>
53 <execution>
54 <phase>install</phase>
55 <goals>
56 <goal>run</goal>
57 </goals>
58 <configuration>
59 <target>
60 <copy todir="${rpm.stagingRepository}" verbose="true"
61 failonerror="false">
62 <fileset dir="${project.build.directory}/rpm"
63 includes="*/RPMS/**/*.rpm" />
64 <flattenmapper />
65 </copy>
66 </target>
67 </configuration>
68 </execution>
69 </executions>
70 </plugin>
71 </plugins>
72 </build>
73 </profile>
74 </profiles>
75 </project>