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