]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
d30b00bf40e13b4fde54bc7cdbdcad1196d9bc8c
[lgpl/argeo-commons.git] / 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 <configuration>
49 <manifestLocation>META-INF</manifestLocation>
50 </configuration>
51 </plugin>
52 </plugins>
53 <pluginManagement>
54 <plugins>
55 <plugin>
56 <groupId>org.argeo.maven.plugins</groupId>
57 <artifactId>maven-argeo-osgi-plugin</artifactId>
58 <executions>
59 <execution>
60 <id>resolve-pde-sources</id>
61 <goals>
62 <goal>pde-sources</goal>
63 </goals>
64 <phase>generate-resources</phase>
65 </execution>
66 <execution>
67 <id>generate-descriptors</id>
68 <goals>
69 <goal>descriptors</goal>
70 </goals>
71 <phase>generate-resources</phase>
72 </execution>
73 <execution>
74 <id>check-osgi</id>
75 <phase>test</phase>
76 <goals>
77 <goal>equinox</goal>
78 </goals>
79 <configuration>
80 <onlyCheck>true</onlyCheck>
81 <argsToAppend>
82 <arg>-clean</arg>
83 </argsToAppend>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </pluginManagement>
90 </build>
91 <dependencies>
92 <dependency>
93 <groupId>org.argeo.commons.osgi</groupId>
94 <artifactId>org.argeo.osgi.boot</artifactId>
95 <version>0.2.2-SNAPSHOT</version>
96 <scope>test</scope>
97 </dependency>
98 </dependencies>
99 </project>