]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/pom.xml
[maven-release-plugin] prepare for next development iteration
[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.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.detached</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 <resources>
21 <resource>
22 <directory>.</directory>
23 <includes>
24 <include>*.inf</include>
25 </includes>
26 </resource>
27 </resources>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.felix</groupId>
31 <artifactId>maven-bundle-plugin</artifactId>
32 </plugin>
33 </plugins>
34 </build>
35 <dependencies>
36 <!-- For target platform generation -->
37 <dependency>
38 <groupId>org.argeo.slc.runtime</groupId>
39 <artifactId>org.argeo.slc.unit</artifactId>
40 <version>1.1.1-SNAPSHOT</version>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.slc.runtime</groupId>
45 <artifactId>org.argeo.slc.support.maven</artifactId>
46 <version>1.1.1-SNAPSHOT</version>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50 <profiles>
51 <profile>
52 <id>rpmbuild</id>
53 <build>
54 <plugins>
55 <plugin>
56 <artifactId>maven-antrun-plugin</artifactId>
57 <executions>
58 <execution>
59 <phase>install</phase>
60 <goals>
61 <goal>run</goal>
62 </goals>
63 <configuration>
64 <target>
65 <copy todir="${rpm.stagingRepository}" verbose="true" failonerror="false">
66 <fileset dir="${project.build.directory}/rpm" includes="*/RPMS/**/*.rpm" />
67 <flattenmapper />
68 </copy>
69 </target>
70 </configuration>
71 </execution>
72 </executions>
73 </plugin>
74 </plugins>
75 </build>
76 </profile>
77 </profiles>
78 </project>