]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/features/pom.xml
commons: improve maven, new RPM structure
[lgpl/argeo-commons.git] / security / features / 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>0.3.4-SNAPSHOT</version>
7 <artifactId>security</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.security</groupId>
11 <artifactId>features</artifactId>
12 <name>Commons Security Features</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.security.dep.node.rap</module>
16 <module>org.argeo.security.dep.node.rcp</module>
17 </modules>
18 <build>
19 <resources>
20 <resource>
21 <directory>.</directory>
22 <includes>
23 <include>*.inf</include>
24 </includes>
25 </resource>
26 </resources>
27 <plugins>
28 <plugin>
29 <groupId>org.codehaus.mojo</groupId>
30 <artifactId>buildnumber-maven-plugin</artifactId>
31 <configuration>
32 <useLastCommittedRevision>false</useLastCommittedRevision>
33 </configuration>
34 </plugin>
35 <plugin>
36 <artifactId>maven-jar-plugin</artifactId>
37 <configuration>
38 <archive>
39 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
40 </archive>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <configuration>
47 <manifestLocation>META-INF</manifestLocation>
48 </configuration>
49 </plugin>
50 </plugins>
51 <pluginManagement>
52 <plugins>
53 <plugin>
54 <groupId>org.argeo.maven.plugins</groupId>
55 <artifactId>maven-argeo-osgi-plugin</artifactId>
56 <executions>
57 <execution>
58 <id>resolve-pde-sources</id>
59 <goals>
60 <goal>pde-sources</goal>
61 </goals>
62 <phase>generate-resources</phase>
63 </execution>
64 <execution>
65 <id>generate-descriptors</id>
66 <goals>
67 <goal>descriptors</goal>
68 </goals>
69 <phase>generate-resources</phase>
70 </execution>
71 <execution>
72 <id>check-osgi</id>
73 <phase>test</phase>
74 <goals>
75 <goal>equinox</goal>
76 </goals>
77 <configuration>
78 <onlyCheck>true</onlyCheck>
79 <argsToAppend>
80 <arg>-clean</arg>
81 </argsToAppend>
82 </configuration>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 </pluginManagement>
88
89 </build>
90 </project>