]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
4676d5398d7d2d6ef08f388869463049fc9bba8b
[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" 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.eclipse</groupId>
6 <artifactId>eclipse</artifactId>
7 <version>0.3.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>features</artifactId>
11 <name>Commons Eclipse Dependencies</name>
12 <packaging>pom</packaging>
13 <modules>
14 <module>org.argeo.eclipse.dep.common</module>
15 <module>org.argeo.eclipse.dep.rap</module>
16 <module>org.argeo.eclipse.dep.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 <version>${version.maven-bundle-plugin}</version>
47 <configuration>
48 <manifestLocation>META-INF</manifestLocation>
49 </configuration>
50 </plugin>
51 </plugins>
52 <pluginManagement>
53 <plugins>
54 <plugin>
55 <groupId>org.argeo.maven.plugins</groupId>
56 <artifactId>maven-argeo-osgi-plugin</artifactId>
57 <executions>
58 <execution>
59 <id>resolve-pde-sources</id>
60 <goals>
61 <goal>pde-sources</goal>
62 </goals>
63 <phase>generate-resources</phase>
64 </execution>
65 <execution>
66 <id>generate-descriptors</id>
67 <goals>
68 <goal>descriptors</goal>
69 </goals>
70 <phase>generate-resources</phase>
71 </execution>
72 <execution>
73 <id>check-osgi</id>
74 <phase>test</phase>
75 <goals>
76 <goal>equinox</goal>
77 </goals>
78 <configuration>
79 <onlyCheck>true</onlyCheck>
80 <argsToAppend>
81 <arg>-clean</arg>
82 </argsToAppend>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87 </plugins>
88 </pluginManagement>
89 </build>
90 <dependencies>
91 <dependency>
92 <groupId>org.argeo.commons.osgi</groupId>
93 <artifactId>org.argeo.osgi.boot</artifactId>
94 <version>0.3.1-SNAPSHOT</version>
95 <scope>test</scope>
96 </dependency>
97 </dependencies>
98 </project>