]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/features/pom.xml
Adapt Security to RCP
[lgpl/argeo-commons.git] / eclipse / 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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.commons.eclipse</groupId>
7 <artifactId>eclipse</artifactId>
8 <version>0.2.2-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>features</artifactId>
12 <name>Commons Eclipse Dependencies</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.eclipse.dep.common</module>
16 <module>org.argeo.eclipse.dep.rap</module>
17 <module>org.argeo.eclipse.dep.rcp</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.codehaus.mojo</groupId>
31 <artifactId>buildnumber-maven-plugin</artifactId>
32 <configuration>
33 <useLastCommittedRevision>false</useLastCommittedRevision>
34 </configuration>
35 </plugin>
36 <plugin>
37 <artifactId>maven-jar-plugin</artifactId>
38 <configuration>
39 <archive>
40 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
41 </archive>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>${version.maven-bundle-plugin}</version>
48 </plugin>
49 </plugins>
50 <pluginManagement>
51 <plugins>
52 <plugin>
53 <groupId>org.argeo.maven.plugins</groupId>
54 <artifactId>maven-argeo-osgi-plugin</artifactId>
55 <executions>
56 <execution>
57 <id>resolve-pde-sources</id>
58 <goals>
59 <goal>pde-sources</goal>
60 </goals>
61 <phase>generate-resources</phase>
62 </execution>
63 <execution>
64 <id>generate-descriptors</id>
65 <goals>
66 <goal>descriptors</goal>
67 </goals>
68 <phase>generate-resources</phase>
69 </execution>
70 <execution>
71 <id>check-osgi</id>
72 <phase>test</phase>
73 <goals>
74 <goal>equinox</goal>
75 </goals>
76 <configuration>
77 <onlyCheck>true</onlyCheck>
78 <argsToAppend>
79 <arg>-clean</arg>
80 </argsToAppend>
81 </configuration>
82 </execution>
83 </executions>
84 </plugin>
85 </plugins>
86 </pluginManagement>
87 </build>
88 <dependencies>
89 <dependency>
90 <groupId>org.argeo.commons.osgi</groupId>
91 <artifactId>org.argeo.osgi.boot</artifactId>
92 <version>0.2.2-SNAPSHOT</version>
93 <scope>test</scope>
94 </dependency>
95 </dependencies>
96 </project>